[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-includes/ -> widgets.php (source)

   1  <?php
   2  /**
   3   * Core Widgets API
   4   *
   5   * This API is used for creating dynamic sidebar without hardcoding functionality into
   6   * themes
   7   *
   8   * Includes both internal WordPress routines and theme-use routines.
   9   *
  10   * This functionality was found in a plugin before the WordPress 2.2 release, which
  11   * included it in the core from that point on.
  12   *
  13   * @link https://wordpress.org/documentation/article/manage-wordpress-widgets/
  14   * @link https://developer.wordpress.org/themes/functionality/widgets/
  15   *
  16   * @package WordPress
  17   * @subpackage Widgets
  18   * @since 2.2.0
  19   */
  20  
  21  //
  22  // Global Variables.
  23  //
  24  
  25  /** @ignore */
  26  global $wp_registered_sidebars, $wp_registered_widgets, $wp_registered_widget_controls, $wp_registered_widget_updates;
  27  
  28  /**
  29   * Stores the sidebars, since many themes can have more than one.
  30   *
  31   * @since 2.2.0
  32   *
  33   * @global array $wp_registered_sidebars The registered sidebars.
  34   */
  35  $wp_registered_sidebars = array();
  36  
  37  /**
  38   * Stores the registered widgets.
  39   *
  40   * @since 2.2.0
  41   *
  42   * @global array $wp_registered_widgets The registered widgets.
  43   */
  44  $wp_registered_widgets = array();
  45  
  46  /**
  47   * Stores the registered widget controls (options).
  48   *
  49   * @since 2.2.0
  50   *
  51   * @global array $wp_registered_widget_controls The registered widget controls.
  52   */
  53  $wp_registered_widget_controls = array();
  54  
  55  /**
  56   * Stores the registered widget updates.
  57   *
  58   * @since 2.8.0
  59   *
  60   * @global array $wp_registered_widget_updates The registered widget updates.
  61   */
  62  $wp_registered_widget_updates = array();
  63  
  64  /**
  65   * Private
  66   *
  67   * @global array $_wp_sidebars_widgets
  68   */
  69  $_wp_sidebars_widgets = array();
  70  
  71  /**
  72   * Private
  73   *
  74   * @global array $_wp_deprecated_widgets_callbacks
  75   */
  76  $GLOBALS['_wp_deprecated_widgets_callbacks'] = array(
  77      'wp_widget_pages',
  78      'wp_widget_pages_control',
  79      'wp_widget_calendar',
  80      'wp_widget_calendar_control',
  81      'wp_widget_archives',
  82      'wp_widget_archives_control',
  83      'wp_widget_links',
  84      'wp_widget_meta',
  85      'wp_widget_meta_control',
  86      'wp_widget_search',
  87      'wp_widget_recent_entries',
  88      'wp_widget_recent_entries_control',
  89      'wp_widget_tag_cloud',
  90      'wp_widget_tag_cloud_control',
  91      'wp_widget_categories',
  92      'wp_widget_categories_control',
  93      'wp_widget_text',
  94      'wp_widget_text_control',
  95      'wp_widget_rss',
  96      'wp_widget_rss_control',
  97      'wp_widget_recent_comments',
  98      'wp_widget_recent_comments_control',
  99  );
 100  
 101  //
 102  // Template tags & API functions.
 103  //
 104  
 105  /**
 106   * Register a widget
 107   *
 108   * Registers a WP_Widget widget
 109   *
 110   * @since 2.8.0
 111   * @since 4.6.0 Updated the `$widget` parameter to also accept a WP_Widget instance object
 112   *              instead of simply a `WP_Widget` subclass name.
 113   *
 114   * @see WP_Widget
 115   *
 116   * @global WP_Widget_Factory $wp_widget_factory
 117   *
 118   * @param string|WP_Widget $widget Either the name of a `WP_Widget` subclass or an instance of a `WP_Widget` subclass.
 119   */
 120  function register_widget( $widget ) {
 121      global $wp_widget_factory;
 122  
 123      $wp_widget_factory->register( $widget );
 124  }
 125  
 126  /**
 127   * Unregisters a widget.
 128   *
 129   * Unregisters a WP_Widget widget. Useful for un-registering default widgets.
 130   * Run within a function hooked to the {@see 'widgets_init'} action.
 131   *
 132   * @since 2.8.0
 133   * @since 4.6.0 Updated the `$widget` parameter to also accept a WP_Widget instance object
 134   *              instead of simply a `WP_Widget` subclass name.
 135   *
 136   * @see WP_Widget
 137   *
 138   * @global WP_Widget_Factory $wp_widget_factory
 139   *
 140   * @param string|WP_Widget $widget Either the name of a `WP_Widget` subclass or an instance of a `WP_Widget` subclass.
 141   */
 142  function unregister_widget( $widget ) {
 143      global $wp_widget_factory;
 144  
 145      $wp_widget_factory->unregister( $widget );
 146  }
 147  
 148  /**
 149   * Creates multiple sidebars.
 150   *
 151   * If you wanted to quickly create multiple sidebars for a theme or internally.
 152   * This function will allow you to do so. If you don't pass the 'name' and/or
 153   * 'id' in `$args`, then they will be built for you.
 154   *
 155   * @since 2.2.0
 156   *
 157   * @see register_sidebar() The second parameter is documented by register_sidebar() and is the same here.
 158   *
 159   * @global array $wp_registered_sidebars The new sidebars are stored in this array by sidebar ID.
 160   *
 161   * @param int          $number Optional. Number of sidebars to create. Default 1.
 162   * @param array|string $args {
 163   *     Optional. Array or string of arguments for building a sidebar.
 164   *
 165   *     @type string $id   The base string of the unique identifier for each sidebar. If provided, and multiple
 166   *                        sidebars are being defined, the ID will have "-2" appended, and so on.
 167   *                        Default 'sidebar-' followed by the number the sidebar creation is currently at.
 168   *     @type string $name The name or title for the sidebars displayed in the admin dashboard. If registering
 169   *                        more than one sidebar, include '%d' in the string as a placeholder for the uniquely
 170   *                        assigned number for each sidebar.
 171   *                        Default 'Sidebar' for the first sidebar, otherwise 'Sidebar %d'.
 172   * }
 173   */
 174  function register_sidebars( $number = 1, $args = array() ) {
 175      global $wp_registered_sidebars;
 176      $number = (int) $number;
 177  
 178      if ( is_string( $args ) ) {
 179          parse_str( $args, $args );
 180      }
 181  
 182      for ( $i = 1; $i <= $number; $i++ ) {
 183          $_args = $args;
 184  
 185          if ( $number > 1 ) {
 186              if ( isset( $args['name'] ) ) {
 187                  $_args['name'] = sprintf( $args['name'], $i );
 188              } else {
 189                  /* translators: %d: Sidebar number. */
 190                  $_args['name'] = sprintf( __( 'Sidebar %d' ), $i );
 191              }
 192          } else {
 193              $_args['name'] = isset( $args['name'] ) ? $args['name'] : __( 'Sidebar' );
 194          }
 195  
 196          /*
 197           * Custom specified ID's are suffixed if they exist already.
 198           * Automatically generated sidebar names need to be suffixed regardless starting at -0.
 199           */
 200          if ( isset( $args['id'] ) ) {
 201              $_args['id'] = $args['id'];
 202              $n           = 2; // Start at -2 for conflicting custom IDs.
 203              while ( is_registered_sidebar( $_args['id'] ) ) {
 204                  $_args['id'] = $args['id'] . '-' . $n++;
 205              }
 206          } else {
 207              $n = count( $wp_registered_sidebars );
 208              do {
 209                  $_args['id'] = 'sidebar-' . ++$n;
 210              } while ( is_registered_sidebar( $_args['id'] ) );
 211          }
 212          register_sidebar( $_args );
 213      }
 214  }
 215  
 216  /**
 217   * Builds the definition for a single sidebar and returns the ID.
 218   *
 219   * Accepts either a string or an array and then parses that against a set
 220   * of default arguments for the new sidebar. WordPress will automatically
 221   * generate a sidebar ID and name based on the current number of registered
 222   * sidebars if those arguments are not included.
 223   *
 224   * When allowing for automatic generation of the name and ID parameters, keep
 225   * in mind that the incrementor for your sidebar can change over time depending
 226   * on what other plugins and themes are installed.
 227   *
 228   * If theme support for 'widgets' has not yet been added when this function is
 229   * called, it will be automatically enabled through the use of add_theme_support()
 230   *
 231   * @since 2.2.0
 232   * @since 5.6.0 Added the `before_sidebar` and `after_sidebar` arguments.
 233   * @since 5.9.0 Added the `show_in_rest` argument.
 234   *
 235   * @global array $wp_registered_sidebars The registered sidebars.
 236   *
 237   * @param array|string $args {
 238   *     Optional. Array or string of arguments for the sidebar being registered.
 239   *
 240   *     @type string $name           The name or title of the sidebar displayed in the Widgets
 241   *                                  interface. Default 'Sidebar $instance'.
 242   *     @type string $id             The unique identifier by which the sidebar will be called.
 243   *                                  Default 'sidebar-$instance'.
 244   *     @type string $description    Description of the sidebar, displayed in the Widgets interface.
 245   *                                  Default empty string.
 246   *     @type string $class          Extra CSS class to assign to the sidebar in the Widgets interface.
 247   *                                  Default empty.
 248   *     @type string $before_widget  HTML content to prepend to each widget's HTML output when assigned
 249   *                                  to this sidebar. Receives the widget's ID attribute as `%1$s`
 250   *                                  and class name as `%2$s`. Default is an opening list item element.
 251   *     @type string $after_widget   HTML content to append to each widget's HTML output when assigned
 252   *                                  to this sidebar. Default is a closing list item element.
 253   *     @type string $before_title   HTML content to prepend to the sidebar title when displayed.
 254   *                                  Default is an opening h2 element.
 255   *     @type string $after_title    HTML content to append to the sidebar title when displayed.
 256   *                                  Default is a closing h2 element.
 257   *     @type string $before_sidebar HTML content to prepend to the sidebar when displayed.
 258   *                                  Receives the `$id` argument as `%1$s` and `$class` as `%2$s`.
 259   *                                  Outputs after the {@see 'dynamic_sidebar_before'} action.
 260   *                                  Default empty string.
 261   *     @type string $after_sidebar  HTML content to append to the sidebar when displayed.
 262   *                                  Outputs before the {@see 'dynamic_sidebar_after'} action.
 263   *                                  Default empty string.
 264   *     @type bool $show_in_rest     Whether to show this sidebar publicly in the REST API.
 265   *                                  Defaults to only showing the sidebar to administrator users.
 266   * }
 267   * @return string Sidebar ID added to $wp_registered_sidebars global.
 268   */
 269  function register_sidebar( $args = array() ) {
 270      global $wp_registered_sidebars;
 271  
 272      $i = count( $wp_registered_sidebars ) + 1;
 273  
 274      $id_is_empty = empty( $args['id'] );
 275  
 276      $defaults = array(
 277          /* translators: %d: Sidebar number. */
 278          'name'           => sprintf( __( 'Sidebar %d' ), $i ),
 279          'id'             => "sidebar-$i",
 280          'description'    => '',
 281          'class'          => '',
 282          'before_widget'  => '<li id="%1$s" class="widget %2$s">',
 283          'after_widget'   => "</li>\n",
 284          'before_title'   => '<h2 class="widgettitle">',
 285          'after_title'    => "</h2>\n",
 286          'before_sidebar' => '',
 287          'after_sidebar'  => '',
 288          'show_in_rest'   => false,
 289      );
 290  
 291      /**
 292       * Filters the sidebar default arguments.
 293       *
 294       * @since 5.3.0
 295       *
 296       * @see register_sidebar()
 297       *
 298       * @param array $defaults The default sidebar arguments.
 299       */
 300      $sidebar = wp_parse_args( $args, apply_filters( 'register_sidebar_defaults', $defaults ) );
 301  
 302      if ( $id_is_empty ) {
 303          _doing_it_wrong(
 304              __FUNCTION__,
 305              sprintf(
 306                  /* translators: 1: The 'id' argument, 2: Sidebar name, 3: Recommended 'id' value. */
 307                  __( 'No %1$s was set in the arguments array for the "%2$s" sidebar. Defaulting to "%3$s". Manually set the %1$s to "%3$s" to silence this notice and keep existing sidebar content.' ),
 308                  '<code>id</code>',
 309                  $sidebar['name'],
 310                  $sidebar['id']
 311              ),
 312              '4.2.0'
 313          );
 314      }
 315  
 316      $wp_registered_sidebars[ $sidebar['id'] ] = $sidebar;
 317  
 318      add_theme_support( 'widgets' );
 319  
 320      /**
 321       * Fires once a sidebar has been registered.
 322       *
 323       * @since 3.0.0
 324       *
 325       * @param array $sidebar Parsed arguments for the registered sidebar.
 326       */
 327      do_action( 'register_sidebar', $sidebar );
 328  
 329      return $sidebar['id'];
 330  }
 331  
 332  /**
 333   * Removes a sidebar from the list.
 334   *
 335   * @since 2.2.0
 336   *
 337   * @global array $wp_registered_sidebars The registered sidebars.
 338   *
 339   * @param string|int $sidebar_id The ID of the sidebar when it was registered.
 340   */
 341  function unregister_sidebar( $sidebar_id ) {
 342      global $wp_registered_sidebars;
 343  
 344      unset( $wp_registered_sidebars[ $sidebar_id ] );
 345  }
 346  
 347  /**
 348   * Checks if a sidebar is registered.
 349   *
 350   * @since 4.4.0
 351   *
 352   * @global array $wp_registered_sidebars The registered sidebars.
 353   *
 354   * @param string|int $sidebar_id The ID of the sidebar when it was registered.
 355   * @return bool True if the sidebar is registered, false otherwise.
 356   */
 357  function is_registered_sidebar( $sidebar_id ) {
 358      global $wp_registered_sidebars;
 359  
 360      return isset( $wp_registered_sidebars[ $sidebar_id ] );
 361  }
 362  
 363  /**
 364   * Register an instance of a widget.
 365   *
 366   * The default widget option is 'classname' that can be overridden.
 367   *
 368   * The function can also be used to un-register widgets when `$output_callback`
 369   * parameter is an empty string.
 370   *
 371   * @since 2.2.0
 372   * @since 5.3.0 Formalized the existing and already documented `...$params` parameter
 373   *              by adding it to the function signature.
 374   * @since 5.8.0 Added show_instance_in_rest option.
 375   *
 376   * @global array $wp_registered_widgets            Uses stored registered widgets.
 377   * @global array $wp_registered_widget_controls    Stores the registered widget controls (options).
 378   * @global array $wp_registered_widget_updates     The registered widget updates.
 379   * @global array $_wp_deprecated_widgets_callbacks
 380   *
 381   * @param int|string $id              Widget ID.
 382   * @param string     $name            Widget display title.
 383   * @param callable   $output_callback Run when widget is called.
 384   * @param array      $options {
 385   *     Optional. An array of supplementary widget options for the instance.
 386   *
 387   *     @type string $classname             Class name for the widget's HTML container. Default is a shortened
 388   *                                         version of the output callback name.
 389   *     @type string $description           Widget description for display in the widget administration
 390   *                                         panel and/or theme.
 391   *     @type bool   $show_instance_in_rest Whether to show the widget's instance settings in the REST API.
 392   *                                         Only available for WP_Widget based widgets.
 393   * }
 394   * @param mixed      ...$params       Optional additional parameters to pass to the callback function when it's called.
 395   */
 396  function wp_register_sidebar_widget( $id, $name, $output_callback, $options = array(), ...$params ) {
 397      global $wp_registered_widgets, $wp_registered_widget_controls, $wp_registered_widget_updates, $_wp_deprecated_widgets_callbacks;
 398  
 399      $id = strtolower( $id );
 400  
 401      if ( empty( $output_callback ) ) {
 402          unset( $wp_registered_widgets[ $id ] );
 403          return;
 404      }
 405  
 406      $id_base = _get_widget_id_base( $id );
 407      if ( in_array( $output_callback, $_wp_deprecated_widgets_callbacks, true ) && ! is_callable( $output_callback ) ) {
 408          unset( $wp_registered_widget_controls[ $id ] );
 409          unset( $wp_registered_widget_updates[ $id_base ] );
 410          return;
 411      }
 412  
 413      $defaults = array( 'classname' => $output_callback );
 414      $options  = wp_parse_args( $options, $defaults );
 415      $widget   = array(
 416          'name'     => $name,
 417          'id'       => $id,
 418          'callback' => $output_callback,
 419          'params'   => $params,
 420      );
 421      $widget   = array_merge( $widget, $options );
 422  
 423      if ( is_callable( $output_callback ) && ( ! isset( $wp_registered_widgets[ $id ] ) || did_action( 'widgets_init' ) ) ) {
 424  
 425          /**
 426           * Fires once for each registered widget.
 427           *
 428           * @since 3.0.0
 429           *
 430           * @param array $widget An array of default widget arguments.
 431           */
 432          do_action( 'wp_register_sidebar_widget', $widget );
 433          $wp_registered_widgets[ $id ] = $widget;
 434      }
 435  }
 436  
 437  /**
 438   * Retrieve description for widget.
 439   *
 440   * When registering widgets, the options can also include 'description' that
 441   * describes the widget for display on the widget administration panel or
 442   * in the theme.
 443   *
 444   * @since 2.5.0
 445   *
 446   * @global array $wp_registered_widgets The registered widgets.
 447   *
 448   * @param int|string $id Widget ID.
 449   * @return string|void Widget description, if available.
 450   */
 451  function wp_widget_description( $id ) {
 452      if ( ! is_scalar( $id ) ) {
 453          return;
 454      }
 455  
 456      global $wp_registered_widgets;
 457  
 458      if ( isset( $wp_registered_widgets[ $id ]['description'] ) ) {
 459          return esc_html( $wp_registered_widgets[ $id ]['description'] );
 460      }
 461  }
 462  
 463  /**
 464   * Retrieve description for a sidebar.
 465   *
 466   * When registering sidebars a 'description' parameter can be included that
 467   * describes the sidebar for display on the widget administration panel.
 468   *
 469   * @since 2.9.0
 470   *
 471   * @global array $wp_registered_sidebars The registered sidebars.
 472   *
 473   * @param string $id sidebar ID.
 474   * @return string|void Sidebar description, if available.
 475   */
 476  function wp_sidebar_description( $id ) {
 477      if ( ! is_scalar( $id ) ) {
 478          return;
 479      }
 480  
 481      global $wp_registered_sidebars;
 482  
 483      if ( isset( $wp_registered_sidebars[ $id ]['description'] ) ) {
 484          return wp_kses( $wp_registered_sidebars[ $id ]['description'], 'sidebar_description' );
 485      }
 486  }
 487  
 488  /**
 489   * Remove widget from sidebar.
 490   *
 491   * @since 2.2.0
 492   *
 493   * @param int|string $id Widget ID.
 494   */
 495  function wp_unregister_sidebar_widget( $id ) {
 496  
 497      /**
 498       * Fires just before a widget is removed from a sidebar.
 499       *
 500       * @since 3.0.0
 501       *
 502       * @param int|string $id The widget ID.
 503       */
 504      do_action( 'wp_unregister_sidebar_widget', $id );
 505  
 506      wp_register_sidebar_widget( $id, '', '' );
 507      wp_unregister_widget_control( $id );
 508  }
 509  
 510  /**
 511   * Registers widget control callback for customizing options.
 512   *
 513   * @since 2.2.0
 514   * @since 5.3.0 Formalized the existing and already documented `...$params` parameter
 515   *              by adding it to the function signature.
 516   *
 517   * @global array $wp_registered_widget_controls The registered widget controls.
 518   * @global array $wp_registered_widget_updates  The registered widget updates.
 519   * @global array $wp_registered_widgets         The registered widgets.
 520   * @global array $_wp_deprecated_widgets_callbacks
 521   *
 522   * @param int|string $id               Sidebar ID.
 523   * @param string     $name             Sidebar display name.
 524   * @param callable   $control_callback Run when sidebar is displayed.
 525   * @param array      $options {
 526   *     Optional. Array or string of control options. Default empty array.
 527   *
 528   *     @type int        $height  Never used. Default 200.
 529   *     @type int        $width   Width of the fully expanded control form (but try hard to use the default width).
 530   *                               Default 250.
 531   *     @type int|string $id_base Required for multi-widgets, i.e widgets that allow multiple instances such as the
 532   *                               text widget. The widget ID will end up looking like `{$id_base}-{$unique_number}`.
 533   * }
 534   * @param mixed      ...$params        Optional additional parameters to pass to the callback function when it's called.
 535   */
 536  function wp_register_widget_control( $id, $name, $control_callback, $options = array(), ...$params ) {
 537      global $wp_registered_widget_controls, $wp_registered_widget_updates, $wp_registered_widgets, $_wp_deprecated_widgets_callbacks;
 538  
 539      $id      = strtolower( $id );
 540      $id_base = _get_widget_id_base( $id );
 541  
 542      if ( empty( $control_callback ) ) {
 543          unset( $wp_registered_widget_controls[ $id ] );
 544          unset( $wp_registered_widget_updates[ $id_base ] );
 545          return;
 546      }
 547  
 548      if ( in_array( $control_callback, $_wp_deprecated_widgets_callbacks, true ) && ! is_callable( $control_callback ) ) {
 549          unset( $wp_registered_widgets[ $id ] );
 550          return;
 551      }
 552  
 553      if ( isset( $wp_registered_widget_controls[ $id ] ) && ! did_action( 'widgets_init' ) ) {
 554          return;
 555      }
 556  
 557      $defaults          = array(
 558          'width'  => 250,
 559          'height' => 200,
 560      ); // Height is never used.
 561      $options           = wp_parse_args( $options, $defaults );
 562      $options['width']  = (int) $options['width'];
 563      $options['height'] = (int) $options['height'];
 564  
 565      $widget = array(
 566          'name'     => $name,
 567          'id'       => $id,
 568          'callback' => $control_callback,
 569          'params'   => $params,
 570      );
 571      $widget = array_merge( $widget, $options );
 572  
 573      $wp_registered_widget_controls[ $id ] = $widget;
 574  
 575      if ( isset( $wp_registered_widget_updates[ $id_base ] ) ) {
 576          return;
 577      }
 578  
 579      if ( isset( $widget['params'][0]['number'] ) ) {
 580          $widget['params'][0]['number'] = -1;
 581      }
 582  
 583      unset( $widget['width'], $widget['height'], $widget['name'], $widget['id'] );
 584      $wp_registered_widget_updates[ $id_base ] = $widget;
 585  }
 586  
 587  /**
 588   * Registers the update callback for a widget.
 589   *
 590   * @since 2.8.0
 591   * @since 5.3.0 Formalized the existing and already documented `...$params` parameter
 592   *              by adding it to the function signature.
 593   *
 594   * @global array $wp_registered_widget_updates The registered widget updates.
 595   *
 596   * @param string   $id_base         The base ID of a widget created by extending WP_Widget.
 597   * @param callable $update_callback Update callback method for the widget.
 598   * @param array    $options         Optional. Widget control options. See wp_register_widget_control().
 599   *                                  Default empty array.
 600   * @param mixed    ...$params       Optional additional parameters to pass to the callback function when it's called.
 601   */
 602  function _register_widget_update_callback( $id_base, $update_callback, $options = array(), ...$params ) {
 603      global $wp_registered_widget_updates;
 604  
 605      if ( isset( $wp_registered_widget_updates[ $id_base ] ) ) {
 606          if ( empty( $update_callback ) ) {
 607              unset( $wp_registered_widget_updates[ $id_base ] );
 608          }
 609          return;
 610      }
 611  
 612      $widget = array(
 613          'callback' => $update_callback,
 614          'params'   => $params,
 615      );
 616  
 617      $widget                                   = array_merge( $widget, $options );
 618      $wp_registered_widget_updates[ $id_base ] = $widget;
 619  }
 620  
 621  /**
 622   * Registers the form callback for a widget.
 623   *
 624   * @since 2.8.0
 625   * @since 5.3.0 Formalized the existing and already documented `...$params` parameter
 626   *              by adding it to the function signature.
 627   *
 628   * @global array $wp_registered_widget_controls The registered widget controls.
 629   *
 630   * @param int|string $id            Widget ID.
 631   * @param string     $name          Name attribute for the widget.
 632   * @param callable   $form_callback Form callback.
 633   * @param array      $options       Optional. Widget control options. See wp_register_widget_control().
 634   *                                  Default empty array.
 635   * @param mixed      ...$params     Optional additional parameters to pass to the callback function when it's called.
 636   */
 637  
 638  function _register_widget_form_callback( $id, $name, $form_callback, $options = array(), ...$params ) {
 639      global $wp_registered_widget_controls;
 640  
 641      $id = strtolower( $id );
 642  
 643      if ( empty( $form_callback ) ) {
 644          unset( $wp_registered_widget_controls[ $id ] );
 645          return;
 646      }
 647  
 648      if ( isset( $wp_registered_widget_controls[ $id ] ) && ! did_action( 'widgets_init' ) ) {
 649          return;
 650      }
 651  
 652      $defaults          = array(
 653          'width'  => 250,
 654          'height' => 200,
 655      );
 656      $options           = wp_parse_args( $options, $defaults );
 657      $options['width']  = (int) $options['width'];
 658      $options['height'] = (int) $options['height'];
 659  
 660      $widget = array(
 661          'name'     => $name,
 662          'id'       => $id,
 663          'callback' => $form_callback,
 664          'params'   => $params,
 665      );
 666      $widget = array_merge( $widget, $options );
 667  
 668      $wp_registered_widget_controls[ $id ] = $widget;
 669  }
 670  
 671  /**
 672   * Remove control callback for widget.
 673   *
 674   * @since 2.2.0
 675   *
 676   * @param int|string $id Widget ID.
 677   */
 678  function wp_unregister_widget_control( $id ) {
 679      wp_register_widget_control( $id, '', '' );
 680  }
 681  
 682  /**
 683   * Display dynamic sidebar.
 684   *
 685   * By default this displays the default sidebar or 'sidebar-1'. If your theme specifies the 'id' or
 686   * 'name' parameter for its registered sidebars you can pass an ID or name as the $index parameter.
 687   * Otherwise, you can pass in a numerical index to display the sidebar at that index.
 688   *
 689   * @since 2.2.0
 690   *
 691   * @global array $wp_registered_sidebars The registered sidebars.
 692   * @global array $wp_registered_widgets  The registered widgets.
 693   *
 694   * @param int|string $index Optional. Index, name or ID of dynamic sidebar. Default 1.
 695   * @return bool True, if widget sidebar was found and called. False if not found or not called.
 696   */
 697  function dynamic_sidebar( $index = 1 ) {
 698      global $wp_registered_sidebars, $wp_registered_widgets;
 699  
 700      if ( is_int( $index ) ) {
 701          $index = "sidebar-$index";
 702      } else {
 703          $index = sanitize_title( $index );
 704          foreach ( (array) $wp_registered_sidebars as $key => $value ) {
 705              if ( sanitize_title( $value['name'] ) === $index ) {
 706                  $index = $key;
 707                  break;
 708              }
 709          }
 710      }
 711  
 712      $sidebars_widgets = wp_get_sidebars_widgets();
 713      if ( empty( $wp_registered_sidebars[ $index ] ) || empty( $sidebars_widgets[ $index ] ) || ! is_array( $sidebars_widgets[ $index ] ) ) {
 714          /** This action is documented in wp-includes/widget.php */
 715          do_action( 'dynamic_sidebar_before', $index, false );
 716          /** This action is documented in wp-includes/widget.php */
 717          do_action( 'dynamic_sidebar_after', $index, false );
 718          /** This filter is documented in wp-includes/widget.php */
 719          return apply_filters( 'dynamic_sidebar_has_widgets', false, $index );
 720      }
 721  
 722      $sidebar = $wp_registered_sidebars[ $index ];
 723  
 724      $sidebar['before_sidebar'] = sprintf( $sidebar['before_sidebar'], $sidebar['id'], $sidebar['class'] );
 725  
 726      /**
 727       * Fires before widgets are rendered in a dynamic sidebar.
 728       *
 729       * Note: The action also fires for empty sidebars, and on both the front end
 730       * and back end, including the Inactive Widgets sidebar on the Widgets screen.
 731       *
 732       * @since 3.9.0
 733       *
 734       * @param int|string $index       Index, name, or ID of the dynamic sidebar.
 735       * @param bool       $has_widgets Whether the sidebar is populated with widgets.
 736       *                                Default true.
 737       */
 738      do_action( 'dynamic_sidebar_before', $index, true );
 739  
 740      if ( ! is_admin() && ! empty( $sidebar['before_sidebar'] ) ) {
 741          echo $sidebar['before_sidebar'];
 742      }
 743  
 744      $did_one = false;
 745      foreach ( (array) $sidebars_widgets[ $index ] as $id ) {
 746  
 747          if ( ! isset( $wp_registered_widgets[ $id ] ) ) {
 748              continue;
 749          }
 750  
 751          $params = array_merge(
 752              array(
 753                  array_merge(
 754                      $sidebar,
 755                      array(
 756                          'widget_id'   => $id,
 757                          'widget_name' => $wp_registered_widgets[ $id ]['name'],
 758                      )
 759                  ),
 760              ),
 761              (array) $wp_registered_widgets[ $id ]['params']
 762          );
 763  
 764          // Substitute HTML `id` and `class` attributes into `before_widget`.
 765          $classname_ = '';
 766          foreach ( (array) $wp_registered_widgets[ $id ]['classname'] as $cn ) {
 767              if ( is_string( $cn ) ) {
 768                  $classname_ .= '_' . $cn;
 769              } elseif ( is_object( $cn ) ) {
 770                  $classname_ .= '_' . get_class( $cn );
 771              }
 772          }
 773          $classname_ = ltrim( $classname_, '_' );
 774  
 775          $params[0]['before_widget'] = sprintf(
 776              $params[0]['before_widget'],
 777              str_replace( '\\', '_', $id ),
 778              $classname_
 779          );
 780  
 781          /**
 782           * Filters the parameters passed to a widget's display callback.
 783           *
 784           * Note: The filter is evaluated on both the front end and back end,
 785           * including for the Inactive Widgets sidebar on the Widgets screen.
 786           *
 787           * @since 2.5.0
 788           *
 789           * @see register_sidebar()
 790           *
 791           * @param array $params {
 792           *     @type array $args  {
 793           *         An array of widget display arguments.
 794           *
 795           *         @type string $name          Name of the sidebar the widget is assigned to.
 796           *         @type string $id            ID of the sidebar the widget is assigned to.
 797           *         @type string $description   The sidebar description.
 798           *         @type string $class         CSS class applied to the sidebar container.
 799           *         @type string $before_widget HTML markup to prepend to each widget in the sidebar.
 800           *         @type string $after_widget  HTML markup to append to each widget in the sidebar.
 801           *         @type string $before_title  HTML markup to prepend to the widget title when displayed.
 802           *         @type string $after_title   HTML markup to append to the widget title when displayed.
 803           *         @type string $widget_id     ID of the widget.
 804           *         @type string $widget_name   Name of the widget.
 805           *     }
 806           *     @type array $widget_args {
 807           *         An array of multi-widget arguments.
 808           *
 809           *         @type int $number Number increment used for multiples of the same widget.
 810           *     }
 811           * }
 812           */
 813          $params = apply_filters( 'dynamic_sidebar_params', $params );
 814  
 815          $callback = $wp_registered_widgets[ $id ]['callback'];
 816  
 817          /**
 818           * Fires before a widget's display callback is called.
 819           *
 820           * Note: The action fires on both the front end and back end, including
 821           * for widgets in the Inactive Widgets sidebar on the Widgets screen.
 822           *
 823           * The action is not fired for empty sidebars.
 824           *
 825           * @since 3.0.0
 826           *
 827           * @param array $widget {
 828           *     An associative array of widget arguments.
 829           *
 830           *     @type string   $name        Name of the widget.
 831           *     @type string   $id          Widget ID.
 832           *     @type callable $callback    When the hook is fired on the front end, `$callback` is an array
 833           *                                 containing the widget object. Fired on the back end, `$callback`
 834           *                                 is 'wp_widget_control', see `$_callback`.
 835           *     @type array    $params      An associative array of multi-widget arguments.
 836           *     @type string   $classname   CSS class applied to the widget container.
 837           *     @type string   $description The widget description.
 838           *     @type array    $_callback   When the hook is fired on the back end, `$_callback` is populated
 839           *                                 with an array containing the widget object, see `$callback`.
 840           * }
 841           */
 842          do_action( 'dynamic_sidebar', $wp_registered_widgets[ $id ] );
 843  
 844          if ( is_callable( $callback ) ) {
 845              call_user_func_array( $callback, $params );
 846              $did_one = true;
 847          }
 848      }
 849  
 850      if ( ! is_admin() && ! empty( $sidebar['after_sidebar'] ) ) {
 851          echo $sidebar['after_sidebar'];
 852      }
 853  
 854      /**
 855       * Fires after widgets are rendered in a dynamic sidebar.
 856       *
 857       * Note: The action also fires for empty sidebars, and on both the front end
 858       * and back end, including the Inactive Widgets sidebar on the Widgets screen.
 859       *
 860       * @since 3.9.0
 861       *
 862       * @param int|string $index       Index, name, or ID of the dynamic sidebar.
 863       * @param bool       $has_widgets Whether the sidebar is populated with widgets.
 864       *                                Default true.
 865       */
 866      do_action( 'dynamic_sidebar_after', $index, true );
 867  
 868      /**
 869       * Filters whether a sidebar has widgets.
 870       *
 871       * Note: The filter is also evaluated for empty sidebars, and on both the front end
 872       * and back end, including the Inactive Widgets sidebar on the Widgets screen.
 873       *
 874       * @since 3.9.0
 875       *
 876       * @param bool       $did_one Whether at least one widget was rendered in the sidebar.
 877       *                            Default false.
 878       * @param int|string $index   Index, name, or ID of the dynamic sidebar.
 879       */
 880      return apply_filters( 'dynamic_sidebar_has_widgets', $did_one, $index );
 881  }
 882  
 883  /**
 884   * Determines whether a given widget is displayed on the front end.
 885   *
 886   * Either $callback or $id_base can be used
 887   * $id_base is the first argument when extending WP_Widget class
 888   * Without the optional $widget_id parameter, returns the ID of the first sidebar
 889   * in which the first instance of the widget with the given callback or $id_base is found.
 890   * With the $widget_id parameter, returns the ID of the sidebar where
 891   * the widget with that callback/$id_base AND that ID is found.
 892   *
 893   * NOTE: $widget_id and $id_base are the same for single widgets. To be effective
 894   * this function has to run after widgets have initialized, at action {@see 'init'} or later.
 895   *
 896   * For more information on this and similar theme functions, check out
 897   * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
 898   * Conditional Tags} article in the Theme Developer Handbook.
 899   *
 900   * @since 2.2.0
 901   *
 902   * @global array $wp_registered_widgets The registered widgets.
 903   *
 904   * @param callable|false $callback      Optional. Widget callback to check. Default false.
 905   * @param string|false   $widget_id     Optional. Widget ID. Optional, but needed for checking.
 906   *                                      Default false.
 907   * @param string|false   $id_base       Optional. The base ID of a widget created by extending WP_Widget.
 908   *                                      Default false.
 909   * @param bool           $skip_inactive Optional. Whether to check in 'wp_inactive_widgets'.
 910   *                                      Default true.
 911   * @return string|false ID of the sidebar in which the widget is active,
 912   *                      false if the widget is not active.
 913   */
 914  function is_active_widget( $callback = false, $widget_id = false, $id_base = false, $skip_inactive = true ) {
 915      global $wp_registered_widgets;
 916  
 917      $sidebars_widgets = wp_get_sidebars_widgets();
 918  
 919      if ( is_array( $sidebars_widgets ) ) {
 920          foreach ( $sidebars_widgets as $sidebar => $widgets ) {
 921              if ( $skip_inactive && ( 'wp_inactive_widgets' === $sidebar || str_starts_with( $sidebar, 'orphaned_widgets' ) ) ) {
 922                  continue;
 923              }
 924  
 925              if ( is_array( $widgets ) ) {
 926                  foreach ( $widgets as $widget ) {
 927                      if ( ( $callback && isset( $wp_registered_widgets[ $widget ]['callback'] ) && $wp_registered_widgets[ $widget ]['callback'] === $callback ) || ( $id_base && _get_widget_id_base( $widget ) === $id_base ) ) {
 928                          if ( ! $widget_id || $widget_id === $wp_registered_widgets[ $widget ]['id'] ) {
 929                              return $sidebar;
 930                          }
 931                      }
 932                  }
 933              }
 934          }
 935      }
 936      return false;
 937  }
 938  
 939  /**
 940   * Determines whether the dynamic sidebar is enabled and used by the theme.
 941   *
 942   * For more information on this and similar theme functions, check out
 943   * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
 944   * Conditional Tags} article in the Theme Developer Handbook.
 945   *
 946   * @since 2.2.0
 947   *
 948   * @global array $wp_registered_widgets  The registered widgets.
 949   * @global array $wp_registered_sidebars The registered sidebars.
 950   *
 951   * @return bool True if using widgets, false otherwise.
 952   */
 953  function is_dynamic_sidebar() {
 954      global $wp_registered_widgets, $wp_registered_sidebars;
 955  
 956      $sidebars_widgets = get_option( 'sidebars_widgets' );
 957  
 958      foreach ( (array) $wp_registered_sidebars as $index => $sidebar ) {
 959          if ( ! empty( $sidebars_widgets[ $index ] ) ) {
 960              foreach ( (array) $sidebars_widgets[ $index ] as $widget ) {
 961                  if ( array_key_exists( $widget, $wp_registered_widgets ) ) {
 962                      return true;
 963                  }
 964              }
 965          }
 966      }
 967  
 968      return false;
 969  }
 970  
 971  /**
 972   * Determines whether a sidebar contains widgets.
 973   *
 974   * For more information on this and similar theme functions, check out
 975   * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
 976   * Conditional Tags} article in the Theme Developer Handbook.
 977   *
 978   * @since 2.8.0
 979   *
 980   * @param string|int $index Sidebar name, id or number to check.
 981   * @return bool True if the sidebar has widgets, false otherwise.
 982   */
 983  function is_active_sidebar( $index ) {
 984      $index             = ( is_int( $index ) ) ? "sidebar-$index" : sanitize_title( $index );
 985      $sidebars_widgets  = wp_get_sidebars_widgets();
 986      $is_active_sidebar = ! empty( $sidebars_widgets[ $index ] );
 987  
 988      /**
 989       * Filters whether a dynamic sidebar is considered "active".
 990       *
 991       * @since 3.9.0
 992       *
 993       * @param bool       $is_active_sidebar Whether or not the sidebar should be considered "active".
 994       *                                      In other words, whether the sidebar contains any widgets.
 995       * @param int|string $index             Index, name, or ID of the dynamic sidebar.
 996       */
 997      return apply_filters( 'is_active_sidebar', $is_active_sidebar, $index );
 998  }
 999  
1000  //
1001  // Internal Functions.
1002  //
1003  
1004  /**
1005   * Retrieve full list of sidebars and their widget instance IDs.
1006   *
1007   * Will upgrade sidebar widget list, if needed. Will also save updated list, if
1008   * needed.
1009   *
1010   * @since 2.2.0
1011   * @access private
1012   *
1013   * @global array $_wp_sidebars_widgets
1014   * @global array $sidebars_widgets
1015   *
1016   * @param bool $deprecated Not used (argument deprecated).
1017   * @return array Upgraded list of widgets to version 3 array format when called from the admin.
1018   */
1019  function wp_get_sidebars_widgets( $deprecated = true ) {
1020      if ( true !== $deprecated ) {
1021          _deprecated_argument( __FUNCTION__, '2.8.1' );
1022      }
1023  
1024      global $_wp_sidebars_widgets, $sidebars_widgets;
1025  
1026      /*
1027       * If loading from front page, consult $_wp_sidebars_widgets rather than options
1028       * to see if wp_convert_widget_settings() has made manipulations in memory.
1029       */
1030      if ( ! is_admin() ) {
1031          if ( empty( $_wp_sidebars_widgets ) ) {
1032              $_wp_sidebars_widgets = get_option( 'sidebars_widgets', array() );
1033          }
1034  
1035          $sidebars_widgets = $_wp_sidebars_widgets;
1036      } else {
1037          $sidebars_widgets = get_option( 'sidebars_widgets', array() );
1038      }
1039  
1040      if ( is_array( $sidebars_widgets ) && isset( $sidebars_widgets['array_version'] ) ) {
1041          unset( $sidebars_widgets['array_version'] );
1042      }
1043  
1044      /**
1045       * Filters the list of sidebars and their widgets.
1046       *
1047       * @since 2.7.0
1048       *
1049       * @param array $sidebars_widgets An associative array of sidebars and their widgets.
1050       */
1051      return apply_filters( 'sidebars_widgets', $sidebars_widgets );
1052  }
1053  
1054  /**
1055   * Retrieves the registered sidebar with the given ID.
1056   *
1057   * @since 5.9.0
1058   *
1059   * @global array $wp_registered_sidebars The registered sidebars.
1060   *
1061   * @param string $id The sidebar ID.
1062   * @return array|null The discovered sidebar, or null if it is not registered.
1063   */
1064  function wp_get_sidebar( $id ) {
1065      global $wp_registered_sidebars;
1066  
1067      foreach ( (array) $wp_registered_sidebars as $sidebar ) {
1068          if ( $sidebar['id'] === $id ) {
1069              return $sidebar;
1070          }
1071      }
1072  
1073      if ( 'wp_inactive_widgets' === $id ) {
1074          return array(
1075              'id'   => 'wp_inactive_widgets',
1076              'name' => __( 'Inactive widgets' ),
1077          );
1078      }
1079  
1080      return null;
1081  }
1082  
1083  /**
1084   * Set the sidebar widget option to update sidebars.
1085   *
1086   * @since 2.2.0
1087   * @access private
1088   *
1089   * @global array $_wp_sidebars_widgets
1090   * @param array $sidebars_widgets Sidebar widgets and their settings.
1091   */
1092  function wp_set_sidebars_widgets( $sidebars_widgets ) {
1093      global $_wp_sidebars_widgets;
1094  
1095      // Clear cached value used in wp_get_sidebars_widgets().
1096      $_wp_sidebars_widgets = null;
1097  
1098      if ( ! isset( $sidebars_widgets['array_version'] ) ) {
1099          $sidebars_widgets['array_version'] = 3;
1100      }
1101  
1102      update_option( 'sidebars_widgets', $sidebars_widgets );
1103  }
1104  
1105  /**
1106   * Retrieve default registered sidebars list.
1107   *
1108   * @since 2.2.0
1109   * @access private
1110   *
1111   * @global array $wp_registered_sidebars The registered sidebars.
1112   *
1113   * @return array
1114   */
1115  function wp_get_widget_defaults() {
1116      global $wp_registered_sidebars;
1117  
1118      $defaults = array();
1119  
1120      foreach ( (array) $wp_registered_sidebars as $index => $sidebar ) {
1121          $defaults[ $index ] = array();
1122      }
1123  
1124      return $defaults;
1125  }
1126  
1127  /**
1128   * Converts the widget settings from single to multi-widget format.
1129   *
1130   * @since 2.8.0
1131   *
1132   * @global array $_wp_sidebars_widgets
1133   *
1134   * @param string $base_name   Root ID for all widgets of this type.
1135   * @param string $option_name Option name for this widget type.
1136   * @param array  $settings    The array of widget instance settings.
1137   * @return array The array of widget settings converted to multi-widget format.
1138   */
1139  function wp_convert_widget_settings( $base_name, $option_name, $settings ) {
1140      // This test may need expanding.
1141      $single  = false;
1142      $changed = false;
1143  
1144      if ( empty( $settings ) ) {
1145          $single = true;
1146      } else {
1147          foreach ( array_keys( $settings ) as $number ) {
1148              if ( 'number' === $number ) {
1149                  continue;
1150              }
1151              if ( ! is_numeric( $number ) ) {
1152                  $single = true;
1153                  break;
1154              }
1155          }
1156      }
1157  
1158      if ( $single ) {
1159          $settings = array( 2 => $settings );
1160  
1161          // If loading from the front page, update sidebar in memory but don't save to options.
1162          if ( is_admin() ) {
1163              $sidebars_widgets = get_option( 'sidebars_widgets' );
1164          } else {
1165              if ( empty( $GLOBALS['_wp_sidebars_widgets'] ) ) {
1166                  $GLOBALS['_wp_sidebars_widgets'] = get_option( 'sidebars_widgets', array() );
1167              }
1168              $sidebars_widgets = &$GLOBALS['_wp_sidebars_widgets'];
1169          }
1170  
1171          foreach ( (array) $sidebars_widgets as $index => $sidebar ) {
1172              if ( is_array( $sidebar ) ) {
1173                  foreach ( $sidebar as $i => $name ) {
1174                      if ( $base_name === $name ) {
1175                          $sidebars_widgets[ $index ][ $i ] = "$name-2";
1176                          $changed                          = true;
1177                          break 2;
1178                      }
1179                  }
1180              }
1181          }
1182  
1183          if ( is_admin() && $changed ) {
1184              update_option( 'sidebars_widgets', $sidebars_widgets );
1185          }
1186      }
1187  
1188      $settings['_multiwidget'] = 1;
1189      if ( is_admin() ) {
1190          update_option( $option_name, $settings );
1191      }
1192  
1193      return $settings;
1194  }
1195  
1196  /**
1197   * Output an arbitrary widget as a template tag.
1198   *
1199   * @since 2.8.0
1200   *
1201   * @global WP_Widget_Factory $wp_widget_factory
1202   *
1203   * @param string $widget   The widget's PHP class name (see class-wp-widget.php).
1204   * @param array  $instance Optional. The widget's instance settings. Default empty array.
1205   * @param array  $args {
1206   *     Optional. Array of arguments to configure the display of the widget.
1207   *
1208   *     @type string $before_widget HTML content that will be prepended to the widget's HTML output.
1209   *                                 Default `<div class="widget %s">`, where `%s` is the widget's class name.
1210   *     @type string $after_widget  HTML content that will be appended to the widget's HTML output.
1211   *                                 Default `</div>`.
1212   *     @type string $before_title  HTML content that will be prepended to the widget's title when displayed.
1213   *                                 Default `<h2 class="widgettitle">`.
1214   *     @type string $after_title   HTML content that will be appended to the widget's title when displayed.
1215   *                                 Default `</h2>`.
1216   * }
1217   */
1218  function the_widget( $widget, $instance = array(), $args = array() ) {
1219      global $wp_widget_factory;
1220  
1221      if ( ! isset( $wp_widget_factory->widgets[ $widget ] ) ) {
1222          _doing_it_wrong(
1223              __FUNCTION__,
1224              sprintf(
1225                  /* translators: %s: register_widget() */
1226                  __( 'Widgets need to be registered using %s, before they can be displayed.' ),
1227                  '<code>register_widget()</code>'
1228              ),
1229              '4.9.0'
1230          );
1231          return;
1232      }
1233  
1234      $widget_obj = $wp_widget_factory->widgets[ $widget ];
1235      if ( ! ( $widget_obj instanceof WP_Widget ) ) {
1236          return;
1237      }
1238  
1239      $default_args          = array(
1240          'before_widget' => '<div class="widget %s">',
1241          'after_widget'  => '</div>',
1242          'before_title'  => '<h2 class="widgettitle">',
1243          'after_title'   => '</h2>',
1244      );
1245      $args                  = wp_parse_args( $args, $default_args );
1246      $args['before_widget'] = sprintf( $args['before_widget'], $widget_obj->widget_options['classname'] );
1247  
1248      $instance = wp_parse_args( $instance );
1249  
1250      /** This filter is documented in wp-includes/class-wp-widget.php */
1251      $instance = apply_filters( 'widget_display_callback', $instance, $widget_obj, $args );
1252  
1253      if ( false === $instance ) {
1254          return;
1255      }
1256  
1257      /**
1258       * Fires before rendering the requested widget.
1259       *
1260       * @since 3.0.0
1261       *
1262       * @param string $widget   The widget's class name.
1263       * @param array  $instance The current widget instance's settings.
1264       * @param array  $args     An array of the widget's sidebar arguments.
1265       */
1266      do_action( 'the_widget', $widget, $instance, $args );
1267  
1268      $widget_obj->_set( -1 );
1269      $widget_obj->widget( $args, $instance );
1270  }
1271  
1272  /**
1273   * Retrieves the widget ID base value.
1274   *
1275   * @since 2.8.0
1276   *
1277   * @param string $id Widget ID.
1278   * @return string Widget ID base.
1279   */
1280  function _get_widget_id_base( $id ) {
1281      return preg_replace( '/-[0-9]+$/', '', $id );
1282  }
1283  
1284  /**
1285   * Handle sidebars config after theme change
1286   *
1287   * @access private
1288   * @since 3.3.0
1289   *
1290   * @global array $sidebars_widgets
1291   */
1292  function _wp_sidebars_changed() {
1293      global $sidebars_widgets;
1294  
1295      if ( ! is_array( $sidebars_widgets ) ) {
1296          $sidebars_widgets = wp_get_sidebars_widgets();
1297      }
1298  
1299      retrieve_widgets( true );
1300  }
1301  
1302  /**
1303   * Validates and remaps any "orphaned" widgets to wp_inactive_widgets sidebar,
1304   * and saves the widget settings. This has to run at least on each theme change.
1305   *
1306   * For example, let's say theme A has a "footer" sidebar, and theme B doesn't have one.
1307   * After switching from theme A to theme B, all the widgets previously assigned
1308   * to the footer would be inaccessible. This function detects this scenario, and
1309   * moves all the widgets previously assigned to the footer under wp_inactive_widgets.
1310   *
1311   * Despite the word "retrieve" in the name, this function actually updates the database
1312   * and the global `$sidebars_widgets`. For that reason it should not be run on front end,
1313   * unless the `$theme_changed` value is 'customize' (to bypass the database write).
1314   *
1315   * @since 2.8.0
1316   *
1317   * @global array $wp_registered_sidebars The registered sidebars.
1318   * @global array $sidebars_widgets
1319   * @global array $wp_registered_widgets  The registered widgets.
1320   *
1321   * @param string|bool $theme_changed Whether the theme was changed as a boolean. A value
1322   *                                   of 'customize' defers updates for the Customizer.
1323   * @return array Updated sidebars widgets.
1324   */
1325  function retrieve_widgets( $theme_changed = false ) {
1326      global $wp_registered_sidebars, $sidebars_widgets, $wp_registered_widgets;
1327  
1328      $registered_sidebars_keys = array_keys( $wp_registered_sidebars );
1329      $registered_widgets_ids   = array_keys( $wp_registered_widgets );
1330  
1331      if ( ! is_array( get_theme_mod( 'sidebars_widgets' ) ) ) {
1332          if ( empty( $sidebars_widgets ) ) {
1333              return array();
1334          }
1335  
1336          unset( $sidebars_widgets['array_version'] );
1337  
1338          $sidebars_widgets_keys = array_keys( $sidebars_widgets );
1339          sort( $sidebars_widgets_keys );
1340          sort( $registered_sidebars_keys );
1341  
1342          if ( $sidebars_widgets_keys === $registered_sidebars_keys ) {
1343              $sidebars_widgets = _wp_remove_unregistered_widgets( $sidebars_widgets, $registered_widgets_ids );
1344  
1345              return $sidebars_widgets;
1346          }
1347      }
1348  
1349      // Discard invalid, theme-specific widgets from sidebars.
1350      $sidebars_widgets = _wp_remove_unregistered_widgets( $sidebars_widgets, $registered_widgets_ids );
1351      $sidebars_widgets = wp_map_sidebars_widgets( $sidebars_widgets );
1352  
1353      // Find hidden/lost multi-widget instances.
1354      $shown_widgets = array_merge( ...array_values( $sidebars_widgets ) );
1355      $lost_widgets  = array_diff( $registered_widgets_ids, $shown_widgets );
1356  
1357      foreach ( $lost_widgets as $key => $widget_id ) {
1358          $number = preg_replace( '/.+?-([0-9]+)$/', '$1', $widget_id );
1359  
1360          // Only keep active and default widgets.
1361          if ( is_numeric( $number ) && (int) $number < 2 ) {
1362              unset( $lost_widgets[ $key ] );
1363          }
1364      }
1365      $sidebars_widgets['wp_inactive_widgets'] = array_merge( $lost_widgets, (array) $sidebars_widgets['wp_inactive_widgets'] );
1366  
1367      if ( 'customize' !== $theme_changed ) {
1368          // Update the widgets settings in the database.
1369          wp_set_sidebars_widgets( $sidebars_widgets );
1370      }
1371  
1372      return $sidebars_widgets;
1373  }
1374  
1375  /**
1376   * Compares a list of sidebars with their widgets against an allowed list.
1377   *
1378   * @since 4.9.0
1379   * @since 4.9.2 Always tries to restore widget assignments from previous data, not just if sidebars needed mapping.
1380   *
1381   * @global array $wp_registered_sidebars The registered sidebars.
1382   *
1383   * @param array $existing_sidebars_widgets List of sidebars and their widget instance IDs.
1384   * @return array Mapped sidebars widgets.
1385   */
1386  function wp_map_sidebars_widgets( $existing_sidebars_widgets ) {
1387      global $wp_registered_sidebars;
1388  
1389      $new_sidebars_widgets = array(
1390          'wp_inactive_widgets' => array(),
1391      );
1392  
1393      // Short-circuit if there are no sidebars to map.
1394      if ( ! is_array( $existing_sidebars_widgets ) || empty( $existing_sidebars_widgets ) ) {
1395          return $new_sidebars_widgets;
1396      }
1397  
1398      foreach ( $existing_sidebars_widgets as $sidebar => $widgets ) {
1399          if ( 'wp_inactive_widgets' === $sidebar || str_starts_with( $sidebar, 'orphaned_widgets' ) ) {
1400              $new_sidebars_widgets['wp_inactive_widgets'] = array_merge( $new_sidebars_widgets['wp_inactive_widgets'], (array) $widgets );
1401              unset( $existing_sidebars_widgets[ $sidebar ] );
1402          }
1403      }
1404  
1405      // If old and new theme have just one sidebar, map it and we're done.
1406      if ( 1 === count( $existing_sidebars_widgets ) && 1 === count( $wp_registered_sidebars ) ) {
1407          $new_sidebars_widgets[ key( $wp_registered_sidebars ) ] = array_pop( $existing_sidebars_widgets );
1408  
1409          return $new_sidebars_widgets;
1410      }
1411  
1412      // Map locations with the same slug.
1413      $existing_sidebars = array_keys( $existing_sidebars_widgets );
1414  
1415      foreach ( $wp_registered_sidebars as $sidebar => $name ) {
1416          if ( in_array( $sidebar, $existing_sidebars, true ) ) {
1417              $new_sidebars_widgets[ $sidebar ] = $existing_sidebars_widgets[ $sidebar ];
1418              unset( $existing_sidebars_widgets[ $sidebar ] );
1419          } elseif ( ! array_key_exists( $sidebar, $new_sidebars_widgets ) ) {
1420              $new_sidebars_widgets[ $sidebar ] = array();
1421          }
1422      }
1423  
1424      // If there are more sidebars, try to map them.
1425      if ( ! empty( $existing_sidebars_widgets ) ) {
1426  
1427          /*
1428           * If old and new theme both have sidebars that contain phrases
1429           * from within the same group, make an educated guess and map it.
1430           */
1431          $common_slug_groups = array(
1432              array( 'sidebar', 'primary', 'main', 'right' ),
1433              array( 'second', 'left' ),
1434              array( 'sidebar-2', 'footer', 'bottom' ),
1435              array( 'header', 'top' ),
1436          );
1437  
1438          // Go through each group...
1439          foreach ( $common_slug_groups as $slug_group ) {
1440  
1441              // ...and see if any of these slugs...
1442              foreach ( $slug_group as $slug ) {
1443  
1444                  // ...and any of the new sidebars...
1445                  foreach ( $wp_registered_sidebars as $new_sidebar => $args ) {
1446  
1447                      // ...actually match!
1448                      if ( false === stripos( $new_sidebar, $slug ) && false === stripos( $slug, $new_sidebar ) ) {
1449                          continue;
1450                      }
1451  
1452                      // Then see if any of the existing sidebars...
1453                      foreach ( $existing_sidebars_widgets as $sidebar => $widgets ) {
1454  
1455                          // ...and any slug in the same group...
1456                          foreach ( $slug_group as $slug ) {
1457  
1458                              // ... have a match as well.
1459                              if ( false === stripos( $sidebar, $slug ) && false === stripos( $slug, $sidebar ) ) {
1460                                  continue;
1461                              }
1462  
1463                              // Make sure this sidebar wasn't mapped and removed previously.
1464                              if ( ! empty( $existing_sidebars_widgets[ $sidebar ] ) ) {
1465  
1466                                  // We have a match that can be mapped!
1467                                  $new_sidebars_widgets[ $new_sidebar ] = array_merge( $new_sidebars_widgets[ $new_sidebar ], $existing_sidebars_widgets[ $sidebar ] );
1468  
1469                                  // Remove the mapped sidebar so it can't be mapped again.
1470                                  unset( $existing_sidebars_widgets[ $sidebar ] );
1471  
1472                                  // Go back and check the next new sidebar.
1473                                  continue 3;
1474                              }
1475                          } // End foreach ( $slug_group as $slug ).
1476                      } // End foreach ( $existing_sidebars_widgets as $sidebar => $widgets ).
1477                  } // End foreach ( $wp_registered_sidebars as $new_sidebar => $args ).
1478              } // End foreach ( $slug_group as $slug ).
1479          } // End foreach ( $common_slug_groups as $slug_group ).
1480      }
1481  
1482      // Move any left over widgets to inactive sidebar.
1483      foreach ( $existing_sidebars_widgets as $widgets ) {
1484          if ( is_array( $widgets ) && ! empty( $widgets ) ) {
1485              $new_sidebars_widgets['wp_inactive_widgets'] = array_merge( $new_sidebars_widgets['wp_inactive_widgets'], $widgets );
1486          }
1487      }
1488  
1489      // Sidebars_widgets settings from when this theme was previously active.
1490      $old_sidebars_widgets = get_theme_mod( 'sidebars_widgets' );
1491      $old_sidebars_widgets = isset( $old_sidebars_widgets['data'] ) ? $old_sidebars_widgets['data'] : false;
1492  
1493      if ( is_array( $old_sidebars_widgets ) ) {
1494  
1495          // Remove empty sidebars, no need to map those.
1496          $old_sidebars_widgets = array_filter( $old_sidebars_widgets );
1497  
1498          // Only check sidebars that are empty or have not been mapped to yet.
1499          foreach ( $new_sidebars_widgets as $new_sidebar => $new_widgets ) {
1500              if ( array_key_exists( $new_sidebar, $old_sidebars_widgets ) && ! empty( $new_widgets ) ) {
1501                  unset( $old_sidebars_widgets[ $new_sidebar ] );
1502              }
1503          }
1504  
1505          // Remove orphaned widgets, we're only interested in previously active sidebars.
1506          foreach ( $old_sidebars_widgets as $sidebar => $widgets ) {
1507              if ( str_starts_with( $sidebar, 'orphaned_widgets' ) ) {
1508                  unset( $old_sidebars_widgets[ $sidebar ] );
1509              }
1510          }
1511  
1512          $old_sidebars_widgets = _wp_remove_unregistered_widgets( $old_sidebars_widgets );
1513  
1514          if ( ! empty( $old_sidebars_widgets ) ) {
1515  
1516              // Go through each remaining sidebar...
1517              foreach ( $old_sidebars_widgets as $old_sidebar => $old_widgets ) {
1518  
1519                  // ...and check every new sidebar...
1520                  foreach ( $new_sidebars_widgets as $new_sidebar => $new_widgets ) {
1521  
1522                      // ...for every widget we're trying to revive.
1523                      foreach ( $old_widgets as $key => $widget_id ) {
1524                          $active_key = array_search( $widget_id, $new_widgets, true );
1525  
1526                          // If the widget is used elsewhere...
1527                          if ( false !== $active_key ) {
1528  
1529                              // ...and that elsewhere is inactive widgets...
1530                              if ( 'wp_inactive_widgets' === $new_sidebar ) {
1531  
1532                                  // ...remove it from there and keep the active version...
1533                                  unset( $new_sidebars_widgets['wp_inactive_widgets'][ $active_key ] );
1534                              } else {
1535  
1536                                  // ...otherwise remove it from the old sidebar and keep it in the new one.
1537                                  unset( $old_sidebars_widgets[ $old_sidebar ][ $key ] );
1538                              }
1539                          } // End if ( $active_key ).
1540                      } // End foreach ( $old_widgets as $key => $widget_id ).
1541                  } // End foreach ( $new_sidebars_widgets as $new_sidebar => $new_widgets ).
1542              } // End foreach ( $old_sidebars_widgets as $old_sidebar => $old_widgets ).
1543          } // End if ( ! empty( $old_sidebars_widgets ) ).
1544  
1545          // Restore widget settings from when theme was previously active.
1546          $new_sidebars_widgets = array_merge( $new_sidebars_widgets, $old_sidebars_widgets );
1547      }
1548  
1549      return $new_sidebars_widgets;
1550  }
1551  
1552  /**
1553   * Compares a list of sidebars with their widgets against an allowed list.
1554   *
1555   * @since 4.9.0
1556   *
1557   * @global array $wp_registered_widgets The registered widgets.
1558   *
1559   * @param array $sidebars_widgets   List of sidebars and their widget instance IDs.
1560   * @param array $allowed_widget_ids Optional. List of widget IDs to compare against. Default: Registered widgets.
1561   * @return array Sidebars with allowed widgets.
1562   */
1563  function _wp_remove_unregistered_widgets( $sidebars_widgets, $allowed_widget_ids = array() ) {
1564      if ( empty( $allowed_widget_ids ) ) {
1565          $allowed_widget_ids = array_keys( $GLOBALS['wp_registered_widgets'] );
1566      }
1567  
1568      foreach ( $sidebars_widgets as $sidebar => $widgets ) {
1569          if ( is_array( $widgets ) ) {
1570              $sidebars_widgets[ $sidebar ] = array_intersect( $widgets, $allowed_widget_ids );
1571          }
1572      }
1573  
1574      return $sidebars_widgets;
1575  }
1576  
1577  /**
1578   * Display the RSS entries in a list.
1579   *
1580   * @since 2.5.0
1581   *
1582   * @param string|array|object $rss  RSS url.
1583   * @param array               $args Widget arguments.
1584   */
1585  function wp_widget_rss_output( $rss, $args = array() ) {
1586      if ( is_string( $rss ) ) {
1587          $rss = fetch_feed( $rss );
1588      } elseif ( is_array( $rss ) && isset( $rss['url'] ) ) {
1589          $args = $rss;
1590          $rss  = fetch_feed( $rss['url'] );
1591      } elseif ( ! is_object( $rss ) ) {
1592          return;
1593      }
1594  
1595      if ( is_wp_error( $rss ) ) {
1596          if ( is_admin() || current_user_can( 'manage_options' ) ) {
1597              echo '<p><strong>' . __( 'RSS Error:' ) . '</strong> ' . esc_html( $rss->get_error_message() ) . '</p>';
1598          }
1599          return;
1600      }
1601  
1602      $default_args = array(
1603          'show_author'  => 0,
1604          'show_date'    => 0,
1605          'show_summary' => 0,
1606          'items'        => 0,
1607      );
1608      $args         = wp_parse_args( $args, $default_args );
1609  
1610      $items = (int) $args['items'];
1611      if ( $items < 1 || 20 < $items ) {
1612          $items = 10;
1613      }
1614      $show_summary = (int) $args['show_summary'];
1615      $show_author  = (int) $args['show_author'];
1616      $show_date    = (int) $args['show_date'];
1617  
1618      if ( ! $rss->get_item_quantity() ) {
1619          echo '<ul><li>' . __( 'An error has occurred, which probably means the feed is down. Try again later.' ) . '</li></ul>';
1620          $rss->__destruct();
1621          unset( $rss );
1622          return;
1623      }
1624  
1625      echo '<ul>';
1626      foreach ( $rss->get_items( 0, $items ) as $item ) {
1627          $link = $item->get_link();
1628          while ( ! empty( $link ) && stristr( $link, 'http' ) !== $link ) {
1629              $link = substr( $link, 1 );
1630          }
1631          $link = esc_url( strip_tags( $link ) );
1632  
1633          $title = esc_html( trim( strip_tags( $item->get_title() ) ) );
1634          if ( empty( $title ) ) {
1635              $title = __( 'Untitled' );
1636          }
1637  
1638          $desc = html_entity_decode( $item->get_description(), ENT_QUOTES, get_option( 'blog_charset' ) );
1639          $desc = esc_attr( wp_trim_words( $desc, 55, ' [&hellip;]' ) );
1640  
1641          $summary = '';
1642          if ( $show_summary ) {
1643              $summary = $desc;
1644  
1645              // Change existing [...] to [&hellip;].
1646              if ( str_ends_with( $summary, '[...]' ) ) {
1647                  $summary = substr( $summary, 0, -5 ) . '[&hellip;]';
1648              }
1649  
1650              $summary = '<div class="rssSummary">' . esc_html( $summary ) . '</div>';
1651          }
1652  
1653          $date = '';
1654          if ( $show_date ) {
1655              $date = $item->get_date( 'U' );
1656  
1657              if ( $date ) {
1658                  $date = ' <span class="rss-date">' . date_i18n( get_option( 'date_format' ), $date ) . '</span>';
1659              }
1660          }
1661  
1662          $author = '';
1663          if ( $show_author ) {
1664              $author = $item->get_author();
1665              if ( is_object( $author ) ) {
1666                  $author = $author->get_name();
1667                  $author = ' <cite>' . esc_html( strip_tags( $author ) ) . '</cite>';
1668              }
1669          }
1670  
1671          if ( '' === $link ) {
1672              echo "<li>$title{$date}{$summary}{$author}</li>";
1673          } elseif ( $show_summary ) {
1674              echo "<li><a class='rsswidget' href='$link'>$title</a>{$date}{$summary}{$author}</li>";
1675          } else {
1676              echo "<li><a class='rsswidget' href='$link'>$title</a>{$date}{$author}</li>";
1677          }
1678      }
1679      echo '</ul>';
1680      $rss->__destruct();
1681      unset( $rss );
1682  }
1683  
1684  /**
1685   * Display RSS widget options form.
1686   *
1687   * The options for what fields are displayed for the RSS form are all booleans
1688   * and are as follows: 'url', 'title', 'items', 'show_summary', 'show_author',
1689   * 'show_date'.
1690   *
1691   * @since 2.5.0
1692   *
1693   * @param array|string $args   Values for input fields.
1694   * @param array        $inputs Override default display options.
1695   */
1696  function wp_widget_rss_form( $args, $inputs = null ) {
1697      $default_inputs = array(
1698          'url'          => true,
1699          'title'        => true,
1700          'items'        => true,
1701          'show_summary' => true,
1702          'show_author'  => true,
1703          'show_date'    => true,
1704      );
1705      $inputs         = wp_parse_args( $inputs, $default_inputs );
1706  
1707      $args['title'] = isset( $args['title'] ) ? $args['title'] : '';
1708      $args['url']   = isset( $args['url'] ) ? $args['url'] : '';
1709      $args['items'] = isset( $args['items'] ) ? (int) $args['items'] : 0;
1710  
1711      if ( $args['items'] < 1 || 20 < $args['items'] ) {
1712          $args['items'] = 10;
1713      }
1714  
1715      $args['show_summary'] = isset( $args['show_summary'] ) ? (int) $args['show_summary'] : (int) $inputs['show_summary'];
1716      $args['show_author']  = isset( $args['show_author'] ) ? (int) $args['show_author'] : (int) $inputs['show_author'];
1717      $args['show_date']    = isset( $args['show_date'] ) ? (int) $args['show_date'] : (int) $inputs['show_date'];
1718  
1719      if ( ! empty( $args['error'] ) ) {
1720          echo '<p class="widget-error"><strong>' . __( 'RSS Error:' ) . '</strong> ' . esc_html( $args['error'] ) . '</p>';
1721      }
1722  
1723      $esc_number = esc_attr( $args['number'] );
1724      if ( $inputs['url'] ) :
1725          ?>
1726      <p><label for="rss-url-<?php echo $esc_number; ?>"><?php _e( 'Enter the RSS feed URL here:' ); ?></label>
1727      <input class="widefat" id="rss-url-<?php echo $esc_number; ?>" name="widget-rss[<?php echo $esc_number; ?>][url]" type="text" value="<?php echo esc_url( $args['url'] ); ?>" /></p>
1728  <?php endif; if ( $inputs['title'] ) : ?>
1729      <p><label for="rss-title-<?php echo $esc_number; ?>"><?php _e( 'Give the feed a title (optional):' ); ?></label>
1730      <input class="widefat" id="rss-title-<?php echo $esc_number; ?>" name="widget-rss[<?php echo $esc_number; ?>][title]" type="text" value="<?php echo esc_attr( $args['title'] ); ?>" /></p>
1731  <?php endif; if ( $inputs['items'] ) : ?>
1732      <p><label for="rss-items-<?php echo $esc_number; ?>"><?php _e( 'How many items would you like to display?' ); ?></label>
1733      <select id="rss-items-<?php echo $esc_number; ?>" name="widget-rss[<?php echo $esc_number; ?>][items]">
1734      <?php
1735      for ( $i = 1; $i <= 20; ++$i ) {
1736          echo "<option value='$i' " . selected( $args['items'], $i, false ) . ">$i</option>";
1737      }
1738      ?>
1739      </select></p>
1740  <?php endif; if ( $inputs['show_summary'] || $inputs['show_author'] || $inputs['show_date'] ) : ?>
1741      <p>
1742      <?php if ( $inputs['show_summary'] ) : ?>
1743          <input id="rss-show-summary-<?php echo $esc_number; ?>" name="widget-rss[<?php echo $esc_number; ?>][show_summary]" type="checkbox" value="1" <?php checked( $args['show_summary'] ); ?> />
1744          <label for="rss-show-summary-<?php echo $esc_number; ?>"><?php _e( 'Display item content?' ); ?></label><br />
1745      <?php endif; if ( $inputs['show_author'] ) : ?>
1746          <input id="rss-show-author-<?php echo $esc_number; ?>" name="widget-rss[<?php echo $esc_number; ?>][show_author]" type="checkbox" value="1" <?php checked( $args['show_author'] ); ?> />
1747          <label for="rss-show-author-<?php echo $esc_number; ?>"><?php _e( 'Display item author if available?' ); ?></label><br />
1748      <?php endif; if ( $inputs['show_date'] ) : ?>
1749          <input id="rss-show-date-<?php echo $esc_number; ?>" name="widget-rss[<?php echo $esc_number; ?>][show_date]" type="checkbox" value="1" <?php checked( $args['show_date'] ); ?>/>
1750          <label for="rss-show-date-<?php echo $esc_number; ?>"><?php _e( 'Display item date?' ); ?></label><br />
1751      <?php endif; ?>
1752      </p>
1753      <?php
1754      endif; // End of display options.
1755  foreach ( array_keys( $default_inputs ) as $input ) :
1756      if ( 'hidden' === $inputs[ $input ] ) :
1757          $id = str_replace( '_', '-', $input );
1758          ?>
1759  <input type="hidden" id="rss-<?php echo esc_attr( $id ); ?>-<?php echo $esc_number; ?>" name="widget-rss[<?php echo $esc_number; ?>][<?php echo esc_attr( $input ); ?>]" value="<?php echo esc_attr( $args[ $input ] ); ?>" />
1760          <?php
1761      endif;
1762      endforeach;
1763  }
1764  
1765  /**
1766   * Process RSS feed widget data and optionally retrieve feed items.
1767   *
1768   * The feed widget can not have more than 20 items or it will reset back to the
1769   * default, which is 10.
1770   *
1771   * The resulting array has the feed title, feed url, feed link (from channel),
1772   * feed items, error (if any), and whether to show summary, author, and date.
1773   * All respectively in the order of the array elements.
1774   *
1775   * @since 2.5.0
1776   *
1777   * @param array $widget_rss RSS widget feed data. Expects unescaped data.
1778   * @param bool  $check_feed Optional. Whether to check feed for errors. Default true.
1779   * @return array
1780   */
1781  function wp_widget_rss_process( $widget_rss, $check_feed = true ) {
1782      $items = (int) $widget_rss['items'];
1783      if ( $items < 1 || 20 < $items ) {
1784          $items = 10;
1785      }
1786      $url          = sanitize_url( strip_tags( $widget_rss['url'] ) );
1787      $title        = isset( $widget_rss['title'] ) ? trim( strip_tags( $widget_rss['title'] ) ) : '';
1788      $show_summary = isset( $widget_rss['show_summary'] ) ? (int) $widget_rss['show_summary'] : 0;
1789      $show_author  = isset( $widget_rss['show_author'] ) ? (int) $widget_rss['show_author'] : 0;
1790      $show_date    = isset( $widget_rss['show_date'] ) ? (int) $widget_rss['show_date'] : 0;
1791      $error        = false;
1792      $link         = '';
1793  
1794      if ( $check_feed ) {
1795          $rss = fetch_feed( $url );
1796  
1797          if ( is_wp_error( $rss ) ) {
1798              $error = $rss->get_error_message();
1799          } else {
1800              $link = esc_url( strip_tags( $rss->get_permalink() ) );
1801              while ( stristr( $link, 'http' ) !== $link ) {
1802                  $link = substr( $link, 1 );
1803              }
1804  
1805              $rss->__destruct();
1806              unset( $rss );
1807          }
1808      }
1809  
1810      return compact( 'title', 'url', 'link', 'items', 'error', 'show_summary', 'show_author', 'show_date' );
1811  }
1812  
1813  /**
1814   * Registers all of the default WordPress widgets on startup.
1815   *
1816   * Calls {@see 'widgets_init'} action after all of the WordPress widgets have been registered.
1817   *
1818   * @since 2.2.0
1819   */
1820  function wp_widgets_init() {
1821      if ( ! is_blog_installed() ) {
1822          return;
1823      }
1824  
1825      register_widget( 'WP_Widget_Pages' );
1826  
1827      register_widget( 'WP_Widget_Calendar' );
1828  
1829      register_widget( 'WP_Widget_Archives' );
1830  
1831      if ( get_option( 'link_manager_enabled' ) ) {
1832          register_widget( 'WP_Widget_Links' );
1833      }
1834  
1835      register_widget( 'WP_Widget_Media_Audio' );
1836  
1837      register_widget( 'WP_Widget_Media_Image' );
1838  
1839      register_widget( 'WP_Widget_Media_Gallery' );
1840  
1841      register_widget( 'WP_Widget_Media_Video' );
1842  
1843      register_widget( 'WP_Widget_Meta' );
1844  
1845      register_widget( 'WP_Widget_Search' );
1846  
1847      register_widget( 'WP_Widget_Text' );
1848  
1849      register_widget( 'WP_Widget_Categories' );
1850  
1851      register_widget( 'WP_Widget_Recent_Posts' );
1852  
1853      register_widget( 'WP_Widget_Recent_Comments' );
1854  
1855      register_widget( 'WP_Widget_RSS' );
1856  
1857      register_widget( 'WP_Widget_Tag_Cloud' );
1858  
1859      register_widget( 'WP_Nav_Menu_Widget' );
1860  
1861      register_widget( 'WP_Widget_Custom_HTML' );
1862  
1863      register_widget( 'WP_Widget_Block' );
1864  
1865      /**
1866       * Fires after all default WordPress widgets have been registered.
1867       *
1868       * @since 2.2.0
1869       */
1870      do_action( 'widgets_init' );
1871  }
1872  
1873  /**
1874   * Enables the widgets block editor. This is hooked into 'after_setup_theme' so
1875   * that the block editor is enabled by default but can be disabled by themes.
1876   *
1877   * @since 5.8.0
1878   *
1879   * @access private
1880   */
1881  function wp_setup_widgets_block_editor() {
1882      add_theme_support( 'widgets-block-editor' );
1883  }
1884  
1885  /**
1886   * Whether or not to use the block editor to manage widgets. Defaults to true
1887   * unless a theme has removed support for widgets-block-editor or a plugin has
1888   * filtered the return value of this function.
1889   *
1890   * @since 5.8.0
1891   *
1892   * @return bool Whether to use the block editor to manage widgets.
1893   */
1894  function wp_use_widgets_block_editor() {
1895      /**
1896       * Filters whether to use the block editor to manage widgets.
1897       *
1898       * @since 5.8.0
1899       *
1900       * @param bool $use_widgets_block_editor Whether to use the block editor to manage widgets.
1901       */
1902      return apply_filters(
1903          'use_widgets_block_editor',
1904          get_theme_support( 'widgets-block-editor' )
1905      );
1906  }
1907  
1908  /**
1909   * Converts a widget ID into its id_base and number components.
1910   *
1911   * @since 5.8.0
1912   *
1913   * @param string $id Widget ID.
1914   * @return array Array containing a widget's id_base and number components.
1915   */
1916  function wp_parse_widget_id( $id ) {
1917      $parsed = array();
1918  
1919      if ( preg_match( '/^(.+)-(\d+)$/', $id, $matches ) ) {
1920          $parsed['id_base'] = $matches[1];
1921          $parsed['number']  = (int) $matches[2];
1922      } else {
1923          // Likely an old single widget.
1924          $parsed['id_base'] = $id;
1925      }
1926  
1927      return $parsed;
1928  }
1929  
1930  /**
1931   * Finds the sidebar that a given widget belongs to.
1932   *
1933   * @since 5.8.0
1934   *
1935   * @param string $widget_id The widget ID to look for.
1936   * @return string|null The found sidebar's ID, or null if it was not found.
1937   */
1938  function wp_find_widgets_sidebar( $widget_id ) {
1939      foreach ( wp_get_sidebars_widgets() as $sidebar_id => $widget_ids ) {
1940          foreach ( $widget_ids as $maybe_widget_id ) {
1941              if ( $maybe_widget_id === $widget_id ) {
1942                  return (string) $sidebar_id;
1943              }
1944          }
1945      }
1946  
1947      return null;
1948  }
1949  
1950  /**
1951   * Assigns a widget to the given sidebar.
1952   *
1953   * @since 5.8.0
1954   *
1955   * @param string $widget_id  The widget ID to assign.
1956   * @param string $sidebar_id The sidebar ID to assign to. If empty, the widget won't be added to any sidebar.
1957   */
1958  function wp_assign_widget_to_sidebar( $widget_id, $sidebar_id ) {
1959      $sidebars = wp_get_sidebars_widgets();
1960  
1961      foreach ( $sidebars as $maybe_sidebar_id => $widgets ) {
1962          foreach ( $widgets as $i => $maybe_widget_id ) {
1963              if ( $widget_id === $maybe_widget_id && $sidebar_id !== $maybe_sidebar_id ) {
1964                  unset( $sidebars[ $maybe_sidebar_id ][ $i ] );
1965                  // We could technically break 2 here, but continue looping in case the ID is duplicated.
1966                  continue 2;
1967              }
1968          }
1969      }
1970  
1971      if ( $sidebar_id ) {
1972          $sidebars[ $sidebar_id ][] = $widget_id;
1973      }
1974  
1975      wp_set_sidebars_widgets( $sidebars );
1976  }
1977  
1978  /**
1979   * Calls the render callback of a widget and returns the output.
1980   *
1981   * @since 5.8.0
1982   *
1983   * @global array $wp_registered_widgets  The registered widgets.
1984   * @global array $wp_registered_sidebars The registered sidebars.
1985   *
1986   * @param string $widget_id Widget ID.
1987   * @param string $sidebar_id Sidebar ID.
1988   * @return string
1989   */
1990  function wp_render_widget( $widget_id, $sidebar_id ) {
1991      global $wp_registered_widgets, $wp_registered_sidebars;
1992  
1993      if ( ! isset( $wp_registered_widgets[ $widget_id ] ) ) {
1994          return '';
1995      }
1996  
1997      if ( isset( $wp_registered_sidebars[ $sidebar_id ] ) ) {
1998          $sidebar = $wp_registered_sidebars[ $sidebar_id ];
1999      } elseif ( 'wp_inactive_widgets' === $sidebar_id ) {
2000          $sidebar = array();
2001      } else {
2002          return '';
2003      }
2004  
2005      $params = array_merge(
2006          array(
2007              array_merge(
2008                  $sidebar,
2009                  array(
2010                      'widget_id'   => $widget_id,
2011                      'widget_name' => $wp_registered_widgets[ $widget_id ]['name'],
2012                  )
2013              ),
2014          ),
2015          (array) $wp_registered_widgets[ $widget_id ]['params']
2016      );
2017  
2018      // Substitute HTML `id` and `class` attributes into `before_widget`.
2019      $classname_ = '';
2020      foreach ( (array) $wp_registered_widgets[ $widget_id ]['classname'] as $cn ) {
2021          if ( is_string( $cn ) ) {
2022              $classname_ .= '_' . $cn;
2023          } elseif ( is_object( $cn ) ) {
2024              $classname_ .= '_' . get_class( $cn );
2025          }
2026      }
2027      $classname_                 = ltrim( $classname_, '_' );
2028      $params[0]['before_widget'] = sprintf( $params[0]['before_widget'], $widget_id, $classname_ );
2029  
2030      /** This filter is documented in wp-includes/widgets.php */
2031      $params = apply_filters( 'dynamic_sidebar_params', $params );
2032  
2033      $callback = $wp_registered_widgets[ $widget_id ]['callback'];
2034  
2035      ob_start();
2036  
2037      /** This filter is documented in wp-includes/widgets.php */
2038      do_action( 'dynamic_sidebar', $wp_registered_widgets[ $widget_id ] );
2039  
2040      if ( is_callable( $callback ) ) {
2041          call_user_func_array( $callback, $params );
2042      }
2043  
2044      return ob_get_clean();
2045  }
2046  
2047  /**
2048   * Calls the control callback of a widget and returns the output.
2049   *
2050   * @since 5.8.0
2051   *
2052   * @global array $wp_registered_widget_controls The registered widget controls.
2053   *
2054   * @param string $id Widget ID.
2055   * @return string|null
2056   */
2057  function wp_render_widget_control( $id ) {
2058      global $wp_registered_widget_controls;
2059  
2060      if ( ! isset( $wp_registered_widget_controls[ $id ]['callback'] ) ) {
2061          return null;
2062      }
2063  
2064      $callback = $wp_registered_widget_controls[ $id ]['callback'];
2065      $params   = $wp_registered_widget_controls[ $id ]['params'];
2066  
2067      ob_start();
2068  
2069      if ( is_callable( $callback ) ) {
2070          call_user_func_array( $callback, $params );
2071      }
2072  
2073      return ob_get_clean();
2074  }
2075  
2076  /**
2077   * Displays a _doing_it_wrong() message for conflicting widget editor scripts.
2078   *
2079   * The 'wp-editor' script module is exposed as window.wp.editor. This overrides
2080   * the legacy TinyMCE editor module which is required by the widgets editor.
2081   * Because of that conflict, these two shouldn't be enqueued together.
2082   * See https://core.trac.wordpress.org/ticket/53569.
2083   *
2084   * There is also another conflict related to styles where the block widgets
2085   * editor is hidden if a block enqueues 'wp-edit-post' stylesheet.
2086   * See https://core.trac.wordpress.org/ticket/53569.
2087   *
2088   * @since 5.8.0
2089   * @access private
2090   *
2091   * @global WP_Scripts $wp_scripts
2092   * @global WP_Styles  $wp_styles
2093   */
2094  function wp_check_widget_editor_deps() {
2095      global $wp_scripts, $wp_styles;
2096  
2097      if (
2098          $wp_scripts->query( 'wp-edit-widgets', 'enqueued' ) ||
2099          $wp_scripts->query( 'wp-customize-widgets', 'enqueued' )
2100      ) {
2101          if ( $wp_scripts->query( 'wp-editor', 'enqueued' ) ) {
2102              _doing_it_wrong(
2103                  'wp_enqueue_script()',
2104                  sprintf(
2105                      /* translators: 1: 'wp-editor', 2: 'wp-edit-widgets', 3: 'wp-customize-widgets'. */
2106                      __( '"%1$s" script should not be enqueued together with the new widgets editor (%2$s or %3$s).' ),
2107                      'wp-editor',
2108                      'wp-edit-widgets',
2109                      'wp-customize-widgets'
2110                  ),
2111                  '5.8.0'
2112              );
2113          }
2114          if ( $wp_styles->query( 'wp-edit-post', 'enqueued' ) ) {
2115              _doing_it_wrong(
2116                  'wp_enqueue_style()',
2117                  sprintf(
2118                      /* translators: 1: 'wp-edit-post', 2: 'wp-edit-widgets', 3: 'wp-customize-widgets'. */
2119                      __( '"%1$s" style should not be enqueued together with the new widgets editor (%2$s or %3$s).' ),
2120                      'wp-edit-post',
2121                      'wp-edit-widgets',
2122                      'wp-customize-widgets'
2123                  ),
2124                  '5.8.0'
2125              );
2126          }
2127      }
2128  }
2129  
2130  /**
2131   * Registers the previous theme's sidebars for the block themes.
2132   *
2133   * @since 6.2.0
2134   * @access private
2135   *
2136   * @global array $wp_registered_sidebars The registered sidebars.
2137   */
2138  function _wp_block_theme_register_classic_sidebars() {
2139      global $wp_registered_sidebars;
2140  
2141      if ( ! wp_is_block_theme() ) {
2142          return;
2143      }
2144  
2145      $classic_sidebars = get_theme_mod( 'wp_classic_sidebars' );
2146      if ( empty( $classic_sidebars ) ) {
2147          return;
2148      }
2149  
2150      // Don't use `register_sidebar` since it will enable the `widgets` support for a theme.
2151      foreach ( $classic_sidebars as $sidebar ) {
2152          $wp_registered_sidebars[ $sidebar['id'] ] = $sidebar;
2153      }
2154  }


Generated : Thu Nov 21 08:20:01 2024 Cross-referenced by PHPXref