Changeset 58200
- Timestamp:
- 05/26/2024 08:49:30 PM (8 months ago)
- Location:
- trunk/src
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/export.php
r58129 r58200 130 130 * Creates the date options fields for exporting a given post type. 131 131 * 132 * @since 3.1.0 133 * 132 134 * @global wpdb $wpdb WordPress database abstraction object. 133 135 * @global WP_Locale $wp_locale WordPress date and time locale object. 134 *135 * @since 3.1.0136 136 * 137 137 * @param string $post_type The post type. Default 'post'. -
trunk/src/wp-includes/class-wp-locale.php
r56178 r58200 356 356 * For backward compatibility only. 357 357 * 358 * @since 2.1.0 358 359 * @deprecated For backward compatibility only. 359 360 * … … 363 364 * @global array $month 364 365 * @global array $month_abbrev 365 *366 * @since 2.1.0367 366 */ 368 367 public function register_globals() { -
trunk/src/wp-includes/feed.php
r58097 r58200 698 698 * comment will be returned. 699 699 * 700 * @since 5.2.0 701 * 700 702 * @global WP_Query $wp_query WordPress Query object. 701 *702 * @since 5.2.0703 703 * 704 704 * @param string $format Date format string to return the time in. -
trunk/src/wp-includes/functions.php
r58169 r58200 4763 4763 * available. 4764 4764 * 4765 * @since 2.2.0 4766 * 4765 4767 * @global array $wpsmiliestrans 4766 4768 * @global array $wp_smiliessearch 4767 *4768 * @since 2.2.04769 4769 */ 4770 4770 function smilies_init() { -
trunk/src/wp-includes/functions.wp-scripts.php
r58068 r58200 12 12 * Initializes $wp_scripts if it has not been set. 13 13 * 14 * @since 4.2.0 15 * 14 16 * @global WP_Scripts $wp_scripts 15 *16 * @since 4.2.017 17 * 18 18 * @return WP_Scripts WP_Scripts instance. … … 78 78 * 79 79 * @see WP_Scripts::do_item() 80 * @since 2.1.0 81 * 80 82 * @global WP_Scripts $wp_scripts The WP_Scripts object for printing scripts. 81 *82 * @since 2.1.083 83 * 84 84 * @param string|string[]|false $handles Optional. Scripts to be printed. Default 'false'. … … 235 235 * 236 236 * @see WP_Scripts::set_translations() 237 * @global WP_Scripts $wp_scripts The WP_Scripts object for printing scripts.238 *239 237 * @since 5.0.0 240 238 * @since 5.1.0 The `$domain` parameter was made optional. 239 * 240 * @global WP_Scripts $wp_scripts The WP_Scripts object for printing scripts. 241 241 * 242 242 * @param string $handle Script handle the textdomain will be attached to. -
trunk/src/wp-includes/functions.wp-styles.php
r55072 r58200 12 12 * Initializes $wp_styles if it has not been set. 13 13 * 14 * @since 4.2.0 15 * 14 16 * @global WP_Styles $wp_styles 15 *16 * @since 4.2.017 17 * 18 18 * @return WP_Styles WP_Styles instance. … … 35 35 * and passing an array of strings prints those styles. 36 36 * 37 * @since 2.6.0 38 * 37 39 * @global WP_Styles $wp_styles The WP_Styles object for printing styles. 38 *39 * @since 2.6.040 40 * 41 41 * @param string|bool|array $handles Styles to be printed. Default 'false'. -
trunk/src/wp-includes/post.php
r58184 r58200 7937 7937 * Prime the cache containing the parent ID of various post objects. 7938 7938 * 7939 * @since 6.4.0 7940 * 7939 7941 * @global wpdb $wpdb WordPress database abstraction object. 7940 *7941 * @since 6.4.07942 7942 * 7943 7943 * @param int[] $ids ID list. -
trunk/src/wp-includes/script-modules.php
r58037 r58200 15 15 * if it doesn't exist yet. 16 16 * 17 * @since 6.5.0 18 * 17 19 * @global WP_Script_Modules $wp_script_modules 18 *19 * @since 6.5.020 20 * 21 21 * @return WP_Script_Modules The main WP_Script_Modules instance. -
trunk/src/wp-includes/widgets.php
r57370 r58200 29 29 * Stores the sidebars, since many themes can have more than one. 30 30 * 31 * @since 2.2.0 32 * 31 33 * @global array $wp_registered_sidebars The registered sidebars. 34 */ 35 $wp_registered_sidebars = array(); 36 37 /** 38 * Stores the registered widgets. 39 * 32 40 * @since 2.2.0 33 */34 $wp_registered_sidebars = array();35 36 /**37 * Stores the registered widgets.38 41 * 39 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 * 40 49 * @since 2.2.0 41 */42 $wp_registered_widgets = array();43 44 /**45 * Stores the registered widget controls (options).46 50 * 47 51 * @global array $wp_registered_widget_controls The registered widget controls. 48 * @since 2.2.049 52 */ 50 53 $wp_registered_widget_controls = array(); 51 /** 54 55 /** 56 * Stores the registered widget updates. 57 * 58 * @since 2.8.0 59 * 52 60 * @global array $wp_registered_widget_updates The registered widget updates. 53 61 */ -
trunk/src/wp-includes/widgets/class-wp-nav-menu-widget.php
r53630 r58200 138 138 * @since 3.0.0 139 139 * 140 * @global WP_Customize_Manager $wp_customize 141 * 140 142 * @param array $instance Current settings. 141 * @global WP_Customize_Manager $wp_customize142 143 */ 143 144 public function form( $instance ) {
Note: See TracChangeset
for help on using the changeset viewer.