Changeset 51328
- Timestamp:
- 07/04/2021 09:57:02 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-theme.php
r51003 r51328 45 45 * Default themes. 46 46 * 47 * @since 3.4.0 48 * @since 3.5.0 Added the Twenty Twelve theme. 49 * @since 3.6.0 Added the Twenty Thirteen theme. 50 * @since 3.8.0 Added the Twenty Fourteen theme. 51 * @since 4.1.0 Added the Twenty Fifteen theme. 52 * @since 4.4.0 Added the Twenty Sixteen theme. 53 * @since 4.7.0 Added the Twenty Seventeen theme. 54 * @since 5.0.0 Added the Twenty Nineteen theme. 55 * @since 5.3.0 Added the Twenty Twenty theme. 56 * @since 5.6.0 Added the Twenty Twenty-One theme. 47 57 * @var array 48 58 */ … … 66 76 * Renamed theme tags. 67 77 * 78 * @since 3.8.0 68 79 * @var array 69 80 */ … … 76 87 * Absolute path to the theme root, usually wp-content/themes 77 88 * 89 * @since 3.4.0 78 90 * @var string 79 91 */ … … 83 95 * Header data from the theme's style.css file. 84 96 * 97 * @since 3.4.0 85 98 * @var array 86 99 */ … … 90 103 * Header data from the theme's style.css file after being sanitized. 91 104 * 105 * @since 3.4.0 92 106 * @var array 93 107 */ … … 99 113 * Cached due to sorting functions running over the translated name. 100 114 * 115 * @since 3.4.0 101 116 * @var string 102 117 */ … … 106 121 * Errors encountered when initializing the theme. 107 122 * 123 * @since 3.4.0 108 124 * @var WP_Error 109 125 */ … … 116 132 * Otherwise, 'stylesheet' is the same as 'template'. 117 133 * 134 * @since 3.4.0 118 135 * @var string 119 136 */ … … 126 143 * Otherwise, 'template' is the same as 'stylesheet'. 127 144 * 145 * @since 3.4.0 128 146 * @var string 129 147 */ … … 133 151 * A reference to the parent theme, in the case of a child theme. 134 152 * 153 * @since 3.4.0 135 154 * @var WP_Theme 136 155 */ … … 140 159 * URL to the theme root, usually an absolute URL to wp-content/themes 141 160 * 161 * @since 3.4.0 142 162 * @var string 143 163 */ … … 147 167 * Flag for whether the theme's textdomain is loaded. 148 168 * 169 * @since 3.4.0 149 170 * @var bool 150 171 */ … … 154 175 * Stores an md5 hash of the theme root, to function as the cache key. 155 176 * 177 * @since 3.4.0 156 178 * @var string 157 179 */ … … 163 185 * Default is false. Can be set with the {@see 'wp_cache_themes_persistently'} filter. 164 186 * 187 * @since 3.4.0 165 188 * @var bool 166 189 */ … … 172 195 * By default the bucket is not cached, so this value is useless. 173 196 * 197 * @since 3.4.0 174 198 * @var bool 175 199 */
Note: See TracChangeset
for help on using the changeset viewer.