Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: sidebar_admin_setup

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
2370
2371      /**
2372       * Fires early when editing the widgets displayed in sidebars.
2373       *
2374       * @since 2.8.0
2375       */
2376      do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
2377
2378      /** This action is documented in wp-admin/widgets.php */
2379      do_action( 'sidebar_admin_setup' );
2380
2381      $id_base      = wp_unslash( $_POST['id_base'] );
2382      $widget_id    = wp_unslash( $_POST['widget-id'] );
2383      $sidebar_id   = $_POST['sidebar'];
2384      $multi_number = ! empty( $_POST['multi_number'] ) ? (int) $_POST['multi_number'] : 0;
2385      $settings     = isset( $_POST[ 'widget-' . $id_base ] ) && is_array( $_POST[ 'widget-' . $id_base ] ) ? $_POST[ 'widget-' . $id_base ] : false;
2386      $error        = '<p>' . __( 'An error has occurred. Please reload the page and try again.' ) . '</p>';
2387
2388      $sidebars = wp_get_sidebars_widgets();
 
Line Code
2474           wp_die( -1 );
2475      }
2476
2477      unset( $_POST['removeinactivewidgets'], $_POST['action'] );
2478      /** This action is documented in wp-admin/includes/ajax-actions.php */
2479      do_action( 'load-widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
2480      /** This action is documented in wp-admin/includes/ajax-actions.php */
2481      do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
2482      /** This action is documented in wp-admin/widgets.php */
2483      do_action( 'sidebar_admin_setup' );
2484
2485      $sidebars_widgets = wp_get_sidebars_widgets();
2486
2487      foreach ( $sidebars_widgets['wp_inactive_widgets'] as $key => $widget_id ) {
2488           $pieces       = explode( '-', $widget_id );
2489           $multi_number = array_pop( $pieces );
2490           $id_base      = implode( '-', $pieces );
2491           $widget       = get_option( 'widget_' . $id_base );
2492           unset( $widget[ $multi_number ] );