Make WordPress Core

Ticket #58076: 58076.8.patch

File 58076.8.patch, 1.6 KB (added by upadalavipul, 22 months ago)

Few more files in improve various globals documentation.

  • wp-includes/rss.php

     
    2222 * Fires before MagpieRSS is loaded, to optionally replace it.
    2323 *
    2424 * @since 2.3.0
     25 *
     26 * @global string $wp_version The WordPress version string.
     27 *
    2528 * @deprecated 3.0.0
    2629 */
    2730do_action( 'load_feed_engine' );
     
    631634 * Set up constants with default values, unless user overrides.
    632635 *
    633636 * @since 1.5.0
     637 *
     638 * @global string $wp_version The WordPress version string.
     639 *
    634640 * @package External
    635641 * @subpackage MagpieRSS
    636642 */
  • wp-includes/script-loader.php

     
    18441844 * These localizations require information that may not be loaded even by init.
    18451845 *
    18461846 * @since 2.5.0
     1847 *
     1848 * @global array $shortcode_tags
    18471849 */
    18481850function wp_just_in_time_script_localization() {
    18491851
  • wp-includes/widgets.php

     
    15431543 * Compares a list of sidebars with their widgets against an allowed list.
    15441544 *
    15451545 * @since 4.9.0
     1546 *
     1547 * @global array $wp_registered_widgets
    15461548 *
    15471549 * @param array $sidebars_widgets   List of sidebars and their widget instance IDs.
    15481550 * @param array $allowed_widget_ids Optional. List of widget IDs to compare against. Default: Registered widgets.