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 |
|---|---|
| 2367 | |
| 2368 | /** |
| 2369 | * Fires early when editing the widgets displayed in sidebars. |
| 2370 | * |
| 2371 | * @since 2.8.0 |
| 2372 | */ |
| 2373 | do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
| 2374 | |
| 2375 | /** This action is documented in wp-admin/widgets.php */ |
| 2376 | do_action( 'sidebar_admin_setup' ); |
| 2377 | |
| 2378 | $id_base = wp_unslash( $_POST['id_base'] ); |
| 2379 | $widget_id = wp_unslash( $_POST['widget-id'] ); |
| 2380 | $sidebar_id = $_POST['sidebar']; |
| 2381 | $multi_number = ! empty( $_POST['multi_number'] ) ? (int) $_POST['multi_number'] : 0; |
| 2382 | $settings = isset( $_POST[ 'widget-' . $id_base ] ) && is_array( $_POST[ 'widget-' . $id_base ] ) ? $_POST[ 'widget-' . $id_base ] : false; |
| 2383 | $error = '<p>' . __( 'An error has occurred. Please reload the page and try again.' ) . '</p>'; |
| 2384 | |
| 2385 | $sidebars = wp_get_sidebars_widgets(); |
| Line | Code |
| 2471 | wp_die( -1 ); |
| 2472 | } |
| 2473 | |
| 2474 | unset( $_POST['removeinactivewidgets'], $_POST['action'] ); |
| 2475 | /** This action is documented in wp-admin/includes/ajax-actions.php */ |
| 2476 | do_action( 'load-widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
| 2477 | /** This action is documented in wp-admin/includes/ajax-actions.php */ |
| 2478 | do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
| 2479 | /** This action is documented in wp-admin/widgets.php */ |
| 2480 | do_action( 'sidebar_admin_setup' ); |
| 2481 | |
| 2482 | $sidebars_widgets = wp_get_sidebars_widgets(); |
| 2483 | |
| 2484 | foreach ( $sidebars_widgets['wp_inactive_widgets'] as $key => $widget_id ) { |
| 2485 | $pieces = explode( '-', $widget_id ); |
| 2486 | $multi_number = array_pop( $pieces ); |
| 2487 | $id_base = implode( '-', $pieces ); |
| 2488 | $widget = get_option( 'widget_' . $id_base ); |
| 2489 | unset( $widget[ $multi_number ] ); |