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 |
---|---|
1924 | * @since 2.8.0 |
1925 | */ |
1926 | do_action( 'load-widgets.php' ); |
1927 |
|
1928 | /** |
1929 | * Fires early when editing the widgets displayed in sidebars. |
1930 | * |
1931 | * @since 2.8.0 |
1932 | */ |
1933 | do_action( 'widgets.php' ); |
1934 |
|
1935 | /** This action is documented in wp-admin/widgets.php */ |
1936 | do_action( 'sidebar_admin_setup' ); |
1937 |
|
1938 | $id_base = $_POST['id_base']; |
1939 | $widget_id = $_POST['widget-id']; |
1940 | $sidebar_id = $_POST['sidebar']; |
1941 | $multi_number = !empty($_POST['multi_number']) ? (int) $_POST['multi_number'] : 0; |
1942 | $settings = isset($_POST['widget-' . $id_base]) && is_array($_POST['widget-' . $id_base]) ? $_POST['widget-' . $id_base] : false; |
Line | Code |
2018 |
|
2019 | if ( ! current_user_can( 'edit_theme_options' ) ) { |
2020 | wp_die( -1 ); |
2021 | } |
2022 |
|
2023 | unset( $_POST['removeinactivewidgets'], $_POST['action'] ); |
2024 | /** This action is documented in wp-admin/includes/ajax-actions.php */ |
2025 | do_action( 'load-widgets.php' ); |
2026 | /** This action is documented in wp-admin/includes/ajax-actions.php */ |
2027 | do_action( 'widgets.php' ); |
2028 | /** This action is documented in wp-admin/widgets.php */ |
2029 | do_action( 'sidebar_admin_setup' ); |
2030 |
|
2031 | $sidebars_widgets = wp_get_sidebars_widgets(); |
2032 |
|
2033 | foreach ( $sidebars_widgets['wp_inactive_widgets'] as $key => $widget_id ) { |
2034 | $pieces = explode( '-', $widget_id ); |
2035 | $multi_number = array_pop( $pieces ); |
2036 | $id_base = implode( '-', $pieces ); |