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
332       */
333      public function customize_controls_init() {
334           /** This action is documented in wp-admin/includes/ajax-actions.php */
335           do_action( 'load-widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
336
337           /** This action is documented in wp-admin/includes/ajax-actions.php */
338           do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
339
340           /** This action is documented in wp-admin/widgets.php */
341           do_action( 'sidebar_admin_setup' );
342      }
343
344      /**
345       * Ensures widgets are available for all types of previews.
346       *
347       * When in preview, hook to {@see 'customize_register'} for settings after WordPress is loaded
348       * so that all filters have been initialized (e.g. Widget Visibility).
349       *
350       * @since 3.9.0
 
Line Code
1671           }
1672
1673           /** This action is documented in wp-admin/includes/ajax-actions.php */
1674           do_action( 'load-widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
1675
1676           /** This action is documented in wp-admin/includes/ajax-actions.php */
1677           do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
1678
1679           /** This action is documented in wp-admin/widgets.php */
1680           do_action( 'sidebar_admin_setup' );
1681
1682           $widget_id = $this->get_post_value( 'widget-id' );
1683           $parsed_id = $this->parse_widget_id( $widget_id );
1684           $id_base   = $parsed_id['id_base'];
1685
1686           $is_updating_widget_template = (
1687                isset( $_POST[ 'widget-' . $id_base ] )
1688                &&
1689                is_array( $_POST[ 'widget-' . $id_base ] )