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 |
---|---|
2279 | } |
2280 |
|
2281 | unset( $_POST['savewidgets'], $_POST['action'] ); |
2282 |
|
2283 | /** |
2284 | * Fires early when editing the widgets displayed in sidebars. |
2285 | * |
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 */ |
Line | Code |
2389 | function wp_ajax_delete_inactive_widgets() { |
2390 | check_ajax_referer( 'remove-inactive-widgets', 'removeinactivewidgets' ); |
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 ); |