Changeset 61299
- Timestamp:
- 11/25/2025 01:58:14 AM (3 months ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 5 edited
-
class-wp-dependencies.php (modified) (1 diff)
-
class-wp-duotone.php (modified) (2 diffs)
-
class-wp-query.php (modified) (7 diffs)
-
class-wp-rewrite.php (modified) (4 diffs)
-
class-wp-theme.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-dependencies.php
r60948 r61299 92 92 * @since 5.4.0 93 93 * 94 * @var array94 * @var ?array<string, true> 95 95 */ 96 96 private $all_queued_deps; -
trunk/src/wp-includes/class-wp-duotone.php
r61247 r61299 53 53 * @since 6.3.0 54 54 * 55 * @var array55 * @var ?array 56 56 */ 57 57 private static $global_styles_block_names; … … 77 77 * @since 6.3.0 78 78 * 79 * @var array79 * @var ?array 80 80 */ 81 81 private static $global_styles_presets; -
trunk/src/wp-includes/class-wp-query.php
r61044 r61299 23 23 * 24 24 * @since 1.5.0 25 * @var array25 * @var ?array 26 26 */ 27 27 public $query; … … 73 73 * 74 74 * @since 1.5.0 75 * @var int75 * @var ?int 76 76 */ 77 77 public $queried_object_id; … … 81 81 * 82 82 * @since 2.0.1 83 * @var string83 * @var ?string 84 84 */ 85 85 public $request; … … 89 89 * 90 90 * @since 1.5.0 91 * @var WP_Post[]|int[] 91 * @var WP_Post[]|int[]|null 92 92 */ 93 93 public $posts; … … 140 140 * 141 141 * @since 2.2.0 142 * @var WP_Comment[]142 * @var ?WP_Comment[] 143 143 */ 144 144 public $comments; … … 164 164 * 165 165 * @since 2.2.0 166 * @var WP_Comment166 * @var ?WP_Comment 167 167 */ 168 168 public $comment; … … 467 467 * 468 468 * @since 3.7.0 469 * @var array469 * @var ?array 470 470 */ 471 471 private $stopwords; -
trunk/src/wp-includes/class-wp-rewrite.php
r60458 r61299 53 53 * 54 54 * @since 1.5.0 55 * @var ?string 56 */ 57 public $author_structure; 58 59 /** 60 * Permalink structure for date archives. 61 * 62 * @since 1.5.0 63 * @var ?string 64 */ 65 public $date_structure; 66 67 /** 68 * Permalink structure for pages. 69 * 70 * @since 1.5.0 71 * @var ?string 72 */ 73 public $page_structure; 74 75 /** 76 * Base of the search permalink structure (example.com/$search_base/query). 77 * 78 * @since 1.5.0 55 79 * @var string 56 80 */ 57 public $author_structure;58 59 /**60 * Permalink structure for date archives.61 *62 * @since 1.5.063 * @var string64 */65 public $date_structure;66 67 /**68 * Permalink structure for pages.69 *70 * @since 1.5.071 * @var string72 */73 public $page_structure;74 75 /**76 * Base of the search permalink structure (example.com/$search_base/query).77 *78 * @since 1.5.079 * @var string80 */81 81 public $search_base = 'search'; 82 82 … … 85 85 * 86 86 * @since 1.5.0 87 * @var string87 * @var ?string 88 88 */ 89 89 public $search_structure; … … 125 125 * 126 126 * @since 1.5.0 127 * @var string127 * @var ?string 128 128 */ 129 129 public $comment_feed_structure; … … 133 133 * 134 134 * @since 1.5.0 135 * @var string135 * @var ?string 136 136 */ 137 137 public $feed_structure; -
trunk/src/wp-includes/class-wp-theme.php
r60804 r61299 115 115 * 116 116 * @since 3.4.0 117 * @var array117 * @var ?array 118 118 */ 119 119 private $headers_sanitized; … … 123 123 * 124 124 * @since 6.2.0 125 * @var bool125 * @var ?bool 126 126 */ 127 127 private $block_theme; … … 133 133 * 134 134 * @since 3.4.0 135 * @var string135 * @var ?string 136 136 */ 137 137 private $name_translated; … … 141 141 * 142 142 * @since 3.4.0 143 * @var WP_Error143 * @var ?WP_Error 144 144 */ 145 145 private $errors; … … 163 163 * 164 164 * @since 3.4.0 165 * @var ?string 166 */ 167 private $template; 168 169 /** 170 * A reference to the parent theme, in the case of a child theme. 171 * 172 * @since 3.4.0 173 * @var ?WP_Theme 174 */ 175 private $parent; 176 177 /** 178 * URL to the theme root, usually an absolute URL to wp-content/themes 179 * 180 * @since 3.4.0 181 * @var ?string 182 */ 183 private $theme_root_uri; 184 185 /** 186 * Flag for whether the theme's textdomain is loaded. 187 * 188 * @since 3.4.0 189 * @var ?bool 190 */ 191 private $textdomain_loaded; 192 193 /** 194 * Stores an md5 hash of the theme root, to function as the cache key. 195 * 196 * @since 3.4.0 165 197 * @var string 166 198 */ 167 private $template;168 169 /**170 * A reference to the parent theme, in the case of a child theme.171 *172 * @since 3.4.0173 * @var WP_Theme174 */175 private $parent;176 177 /**178 * URL to the theme root, usually an absolute URL to wp-content/themes179 *180 * @since 3.4.0181 * @var string182 */183 private $theme_root_uri;184 185 /**186 * Flag for whether the theme's textdomain is loaded.187 *188 * @since 3.4.0189 * @var bool190 */191 private $textdomain_loaded;192 193 /**194 * Stores an md5 hash of the theme root, to function as the cache key.195 *196 * @since 3.4.0197 * @var string198 */199 199 private $cache_hash; 200 200 … … 203 203 * 204 204 * @since 6.4.0 205 * @var string[]205 * @var ?string[] 206 206 */ 207 207 private $block_template_folders;
Note: See TracChangeset
for help on using the changeset viewer.