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 |
---|---|
325 | /** |
326 | * Ensures all widgets get loaded into the Customizer. |
327 | * |
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 | /** |
Line | Code |
1536 | if ( ! current_user_can( 'edit_theme_options' ) ) { |
1537 | wp_die( -1 ); |
1538 | } |
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 ); |