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 |
---|---|
2286 | * @since 2.8.0 |
2287 | */ |
2288 | do_action( 'load-widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
2289 |
|
2290 | /** |
2291 | * Fires early when editing the widgets displayed in sidebars. |
2292 | * |
2293 | * @since 2.8.0 |
2294 | */ |
2295 | do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
2296 |
|
2297 | /** This action is documented in wp-admin/widgets.php */ |
2298 | do_action( 'sidebar_admin_setup' ); |
2299 |
|
2300 | $id_base = wp_unslash( $_POST['id_base'] ); |
2301 | $widget_id = wp_unslash( $_POST['widget-id'] ); |
2302 | $sidebar_id = $_POST['sidebar']; |
2303 | $multi_number = ! empty( $_POST['multi_number'] ) ? (int) $_POST['multi_number'] : 0; |
2304 | $settings = isset( $_POST[ 'widget-' . $id_base ] ) && is_array( $_POST[ 'widget-' . $id_base ] ) ? $_POST[ 'widget-' . $id_base ] : false; |
Line | Code |
2391 |
|
2392 | if ( ! current_user_can( 'edit_theme_options' ) ) { |
2393 | wp_die( -1 ); |
2394 | } |
2395 |
|
2396 | unset( $_POST['removeinactivewidgets'], $_POST['action'] ); |
2397 | /** This action is documented in wp-admin/includes/ajax-actions.php */ |
2398 | do_action( 'load-widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
2399 | /** This action is documented in wp-admin/includes/ajax-actions.php */ |
2400 | do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
2401 | /** This action is documented in wp-admin/widgets.php */ |
2402 | do_action( 'sidebar_admin_setup' ); |
2403 |
|
2404 | $sidebars_widgets = wp_get_sidebars_widgets(); |
2405 |
|
2406 | foreach ( $sidebars_widgets['wp_inactive_widgets'] as $key => $widget_id ) { |
2407 | $pieces = explode( '-', $widget_id ); |
2408 | $multi_number = array_pop( $pieces ); |
2409 | $id_base = implode( '-', $pieces ); |