WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
Line | Code |
---|---|
328 | * Note: these actions are also fired in wp_ajax_update_widget(). |
329 | * |
330 | * @since 3.9.0 |
331 | */ |
332 | public function customize_controls_init() { |
333 | /** This action is documented in wp-admin/includes/ajax-actions.php */ |
334 | do_action( 'load-widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
335 |
|
336 | /** This action is documented in wp-admin/includes/ajax-actions.php */ |
337 | do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
338 |
|
339 | /** This action is documented in wp-admin/widgets.php */ |
340 | do_action( 'sidebar_admin_setup' ); |
341 | } |
342 |
|
343 | /** |
344 | * Ensures widgets are available for all types of previews. |
345 | * |
346 | * When in preview, hook to {@see 'customize_register'} for settings after WordPress is loaded |
Line | Code |
1539 |
|
1540 | if ( empty( $_POST['widget-id'] ) ) { |
1541 | wp_send_json_error( 'missing_widget-id' ); |
1542 | } |
1543 |
|
1544 | /** This action is documented in wp-admin/includes/ajax-actions.php */ |
1545 | do_action( 'load-widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
1546 |
|
1547 | /** This action is documented in wp-admin/includes/ajax-actions.php */ |
1548 | do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
1549 |
|
1550 | /** This action is documented in wp-admin/widgets.php */ |
1551 | do_action( 'sidebar_admin_setup' ); |
1552 |
|
1553 | $widget_id = $this->get_post_value( 'widget-id' ); |
1554 | $parsed_id = $this->parse_widget_id( $widget_id ); |
1555 | $id_base = $parsed_id['id_base']; |
1556 |
|
1557 | $is_updating_widget_template = ( |