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
2353      }
2354
2355      unset( $_POST['savewidgets'], $_POST['action'] );
2356
2357      /**
2358       * Fires early when editing the widgets displayed in sidebars.
2359       *
2360       * @since 2.8.0
2361       */
2362      do_action( 'load-widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
2363
2364      /**
2365       * Fires early when editing the widgets displayed in sidebars.
2366       *
2367       * @since 2.8.0
2368       */
2369      do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
2370
2371      /** This action is documented in wp-admin/widgets.php */
 
Line Code
2463 function wp_ajax_delete_inactive_widgets() {
2464      check_ajax_referer( 'remove-inactive-widgets', 'removeinactivewidgets' );
2465
2466      if ( ! current_user_can( 'edit_theme_options' ) ) {
2467           wp_die( -1 );
2468      }
2469
2470      unset( $_POST['removeinactivewidgets'], $_POST['action'] );
2471      /** This action is documented in wp-admin/includes/ajax-actions.php */
2472      do_action( 'load-widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
2473      /** This action is documented in wp-admin/includes/ajax-actions.php */
2474      do_action( 'widgets.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
2475      /** This action is documented in wp-admin/widgets.php */
2476      do_action( 'sidebar_admin_setup' );
2477
2478      $sidebars_widgets = wp_get_sidebars_widgets();
2479
2480      foreach ( $sidebars_widgets['wp_inactive_widgets'] as $key => $widget_id ) {
2481           $pieces       = explode( '-', $widget_id );