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 |
---|---|
1858 | wp_die( -1 ); |
1859 |
|
1860 | unset( $_POST['savewidgets'], $_POST['action'] ); |
1861 |
|
1862 | /** |
1863 | * Fires early when editing the widgets displayed in sidebars. |
1864 | * |
1865 | * @since 2.8.0 |
1866 | */ |
1867 | do_action( 'load-widgets.php' ); |
1868 |
|
1869 | /** |
1870 | * Fires early when editing the widgets displayed in sidebars. |
1871 | * |
1872 | * @since 2.8.0 |
1873 | */ |
1874 | do_action( 'widgets.php' ); |
1875 |
|
1876 | /** This action is documented in wp-admin/widgets.php */ |
Line | Code |
1957 | function wp_ajax_delete_inactive_widgets() { |
1958 | check_ajax_referer( 'remove-inactive-widgets', 'removeinactivewidgets' ); |
1959 |
|
1960 | if ( ! current_user_can( 'edit_theme_options' ) ) { |
1961 | wp_die( -1 ); |
1962 | } |
1963 |
|
1964 | unset( $_POST['removeinactivewidgets'], $_POST['action'] ); |
1965 |
|
1966 | do_action( 'load-widgets.php' ); |
1967 | do_action( 'widgets.php' ); |
1968 | do_action( 'sidebar_admin_setup' ); |
1969 |
|
1970 | $sidebars_widgets = wp_get_sidebars_widgets(); |
1971 |
|
1972 | foreach ( $sidebars_widgets['wp_inactive_widgets'] as $key => $widget_id ) { |
1973 | $pieces = explode( '-', $widget_id ); |
1974 | $multi_number = array_pop( $pieces ); |
1975 | $id_base = implode( '-', $pieces ); |