Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: widgets-php

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 2 times in this file.

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