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 |
---|---|
2278 | } |
2279 |
|
2280 | unset( $_POST['savewidgets'], $_POST['action'] ); |
2281 |
|
2282 | /** |
2283 | * Fires early when editing the widgets displayed in sidebars. |
2284 | * |
2285 | * @since 2.8.0 |
2286 | */ |
2287 | do_action( 'load-widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
2288 |
|
2289 | /** |
2290 | * Fires early when editing the widgets displayed in sidebars. |
2291 | * |
2292 | * @since 2.8.0 |
2293 | */ |
2294 | do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
2295 |
|
2296 | /** This action is documented in wp-admin/widgets.php */ |
Line | Code |
2388 | function wp_ajax_delete_inactive_widgets() { |
2389 | check_ajax_referer( 'remove-inactive-widgets', 'removeinactivewidgets' ); |
2390 |
|
2391 | if ( ! current_user_can( 'edit_theme_options' ) ) { |
2392 | wp_die( -1 ); |
2393 | } |
2394 |
|
2395 | unset( $_POST['removeinactivewidgets'], $_POST['action'] ); |
2396 | /** This action is documented in wp-admin/includes/ajax-actions.php */ |
2397 | do_action( 'load-widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
2398 | /** This action is documented in wp-admin/includes/ajax-actions.php */ |
2399 | do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
2400 | /** This action is documented in wp-admin/widgets.php */ |
2401 | do_action( 'sidebar_admin_setup' ); |
2402 |
|
2403 | $sidebars_widgets = wp_get_sidebars_widgets(); |
2404 |
|
2405 | foreach ( $sidebars_widgets['wp_inactive_widgets'] as $key => $widget_id ) { |
2406 | $pieces = explode( '-', $widget_id ); |