WP_Customize_Widgets::register_settings() WordPress Method
The register_settings() method in WP_Customize_Widgets registers widget settings with the WordPress Settings API. This method is called when the Customizer initializes, and allows widget settings to be persisted across page loads.
WP_Customize_Widgets::register_settings() #
Inspects the incoming customized data for any widget settings, and dynamically adds them up-front so widgets will be initialized properly.
Source
File: wp-includes/class-wp-customize-widgets.php
public function register_settings() { $widget_setting_ids = array(); $incoming_setting_ids = array_keys( $this->manager->unsanitized_post_values() ); foreach ( $incoming_setting_ids as $setting_id ) { if ( ! is_null( $this->get_setting_type( $setting_id ) ) ) { $widget_setting_ids[] = $setting_id; } } if ( $this->manager->doing_ajax( 'update-widget' ) && isset( $_REQUEST['widget-id'] ) ) { $widget_setting_ids[] = $this->get_setting_id( wp_unslash( $_REQUEST['widget-id'] ) ); } $settings = $this->manager->add_dynamic_settings( array_unique( $widget_setting_ids ) ); if ( $this->manager->settings_previewed() ) { foreach ( $settings as $setting ) { $setting->preview(); } } }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.2.0 | Introduced. |