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
340       */
341      public function customize_controls_init() {
342           /** This action is documented in wp-admin/includes/ajax-actions.php */
343           do_action( 'load-widgets.php' );
344
345           /** This action is documented in wp-admin/includes/ajax-actions.php */
346           do_action( 'widgets.php' );
347
348           /** This action is documented in wp-admin/widgets.php */
349           do_action( 'sidebar_admin_setup' );
350      }
351
352      /**
353       * Ensures widgets are available for all types of previews.
354       *
355       * When in preview, hook to {@see 'customize_register'} for settings after WordPress is loaded
356       * so that all filters have been initialized (e.g. Widget Visibility).
357       *
358       * @since 3.9.0
 
Line Code
1543           }
1544
1545           /** This action is documented in wp-admin/includes/ajax-actions.php */
1546           do_action( 'load-widgets.php' );
1547
1548           /** This action is documented in wp-admin/includes/ajax-actions.php */
1549           do_action( 'widgets.php' );
1550
1551           /** This action is documented in wp-admin/widgets.php */
1552           do_action( 'sidebar_admin_setup' );
1553
1554           $widget_id = $this->get_post_value( 'widget-id' );
1555           $parsed_id = $this->parse_widget_id( $widget_id );
1556           $id_base = $parsed_id['id_base'];
1557
1558           $is_updating_widget_template = (
1559                isset( $_POST[ 'widget-' . $id_base ] )
1560                &&
1561                is_array( $_POST[ 'widget-' . $id_base ] )