W3cubDocs

/WordPress

WP_Customize_Widgets::customize_controls_init()

Ensures all widgets get loaded into the Customizer.

Description

Note: these actions are also fired in wp_ajax_update_widget() .

Source

public function customize_controls_init() {
	/** This action is documented in wp-admin/includes/ajax-actions.php */
	do_action( 'load-widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores

	/** This action is documented in wp-admin/includes/ajax-actions.php */
	do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores

	/** This action is documented in wp-admin/widgets.php */
	do_action( 'sidebar_admin_setup' );
}

Hooks

do_action( ‘load-widgets.php’ )

Fires early when editing the widgets displayed in sidebars.

do_action( ‘sidebar_admin_setup’ )

Fires early before the Widgets administration screen loads, after scripts are enqueued.

do_action( ‘widgets.php’ )

Fires early when editing the widgets displayed in sidebars.

Changelog

Version Description
3.9.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_customize_widgets/customize_controls_init