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 |
---|---|
2154 | } |
2155 |
|
2156 | unset( $_POST['savewidgets'], $_POST['action'] ); |
2157 |
|
2158 | /** |
2159 | * Fires early when editing the widgets displayed in sidebars. |
2160 | * |
2161 | * @since 2.8.0 |
2162 | */ |
2163 | do_action( 'load-widgets.php' ); |
2164 |
|
2165 | /** |
2166 | * Fires early when editing the widgets displayed in sidebars. |
2167 | * |
2168 | * @since 2.8.0 |
2169 | */ |
2170 | do_action( 'widgets.php' ); |
2171 |
|
2172 | /** This action is documented in wp-admin/widgets.php */ |
Line | Code |
2263 | function wp_ajax_delete_inactive_widgets() { |
2264 | check_ajax_referer( 'remove-inactive-widgets', 'removeinactivewidgets' ); |
2265 |
|
2266 | if ( ! current_user_can( 'edit_theme_options' ) ) { |
2267 | wp_die( -1 ); |
2268 | } |
2269 |
|
2270 | unset( $_POST['removeinactivewidgets'], $_POST['action'] ); |
2271 | /** This action is documented in wp-admin/includes/ajax-actions.php */ |
2272 | do_action( 'load-widgets.php' ); |
2273 | /** This action is documented in wp-admin/includes/ajax-actions.php */ |
2274 | do_action( 'widgets.php' ); |
2275 | /** This action is documented in wp-admin/widgets.php */ |
2276 | do_action( 'sidebar_admin_setup' ); |
2277 |
|
2278 | $sidebars_widgets = wp_get_sidebars_widgets(); |
2279 |
|
2280 | foreach ( $sidebars_widgets['wp_inactive_widgets'] as $key => $widget_id ) { |
2281 | $pieces = explode( '-', $widget_id ); |