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
2282       * @since 2.8.0
2283       */
2284      do_action( 'load-widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
2285
2286      /**
2287       * Fires early when editing the widgets displayed in sidebars.
2288       *
2289       * @since 2.8.0
2290       */
2291      do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
2292
2293      /** This action is documented in wp-admin/widgets.php */
2294      do_action( 'sidebar_admin_setup' );
2295
2296      $id_base      = wp_unslash( $_POST['id_base'] );
2297      $widget_id    = wp_unslash( $_POST['widget-id'] );
2298      $sidebar_id   = $_POST['sidebar'];
2299      $multi_number = ! empty( $_POST['multi_number'] ) ? (int) $_POST['multi_number'] : 0;
2300      $settings     = isset( $_POST[ 'widget-' . $id_base ] ) && is_array( $_POST[ 'widget-' . $id_base ] ) ? $_POST[ 'widget-' . $id_base ] : false;
 
Line Code
2387
2388      if ( ! current_user_can( 'edit_theme_options' ) ) {
2389           wp_die( -1 );
2390      }
2391
2392      unset( $_POST['removeinactivewidgets'], $_POST['action'] );
2393      /** This action is documented in wp-admin/includes/ajax-actions.php */
2394      do_action( 'load-widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
2395      /** This action is documented in wp-admin/includes/ajax-actions.php */
2396      do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
2397      /** This action is documented in wp-admin/widgets.php */
2398      do_action( 'sidebar_admin_setup' );
2399
2400      $sidebars_widgets = wp_get_sidebars_widgets();
2401
2402      foreach ( $sidebars_widgets['wp_inactive_widgets'] as $key => $widget_id ) {
2403           $pieces       = explode( '-', $widget_id );
2404           $multi_number = array_pop( $pieces );
2405           $id_base      = implode( '-', $pieces );