Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: load-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
327      /**
328       * Ensures all widgets get loaded into the Customizer.
329       *
330       * Note: these actions are also fired in wp_ajax_update_widget().
331       *
332       * @since 3.9.0
333       */
334      public function customize_controls_init() {
335           /** This action is documented in wp-admin/includes/ajax-actions.php */
336           do_action( 'load-widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
337
338           /** This action is documented in wp-admin/includes/ajax-actions.php */
339           do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
340
341           /** This action is documented in wp-admin/widgets.php */
342           do_action( 'sidebar_admin_setup' );
343      }
344
345      /**
 
Line Code
1532           if ( ! current_user_can( 'edit_theme_options' ) ) {
1533                wp_die( -1 );
1534           }
1535
1536           if ( empty( $_POST['widget-id'] ) ) {
1537                wp_send_json_error( 'missing_widget-id' );
1538           }
1539
1540           /** This action is documented in wp-admin/includes/ajax-actions.php */
1541           do_action( 'load-widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
1542
1543           /** This action is documented in wp-admin/includes/ajax-actions.php */
1544           do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
1545
1546           /** This action is documented in wp-admin/widgets.php */
1547           do_action( 'sidebar_admin_setup' );
1548
1549           $widget_id = $this->get_post_value( 'widget-id' );
1550           $parsed_id = $this->parse_widget_id( $widget_id );