WP_Customize_Widgets::selective_refresh_init() public WP 4.5.0
Adds hooks for selective refresh.
{} It's a method of the class: WP_Customize_Widgets{}
No Hooks.
Return
Null. Nothing.
Usage
$WP_Customize_Widgets = new WP_Customize_Widgets(); $WP_Customize_Widgets->selective_refresh_init();
Changelog
Since 4.5.0 | Introduced. |
Code of WP_Customize_Widgets::selective_refresh_init() WP Customize Widgets::selective refresh init WP 5.6
public function selective_refresh_init() {
if ( ! current_theme_supports( 'customize-selective-refresh-widgets' ) ) {
return;
}
add_filter( 'dynamic_sidebar_params', array( $this, 'filter_dynamic_sidebar_params' ) );
add_filter( 'wp_kses_allowed_html', array( $this, 'filter_wp_kses_allowed_data_attributes' ) );
add_action( 'dynamic_sidebar_before', array( $this, 'start_dynamic_sidebar' ) );
add_action( 'dynamic_sidebar_after', array( $this, 'end_dynamic_sidebar' ) );
}