WP_Customize_Widgets::selective_refresh_init() WordPress Method

The WP_Customize_Widgets::selective_refresh_init() method is used to initialize the selective refresh feature for widgets. This feature allows certain parts of a widget to be updated without refreshing the entire widget.

WP_Customize_Widgets::selective_refresh_init() #

Adds hooks for selective refresh.


Source

File: wp-includes/class-wp-customize-widgets.php

	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' ) );
	}


Top ↑

Changelog

Changelog
VersionDescription
4.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.