Changeset 61299 for trunk/src/wp-includes/class-wp-theme.php
- Timestamp:
- 11/25/2025 01:58:14 AM (5 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-theme.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
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.