Changeset 39736 for trunk/src/wp-includes/class-wp-theme.php
- Timestamp:
- 01/06/2017 01:47:16 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-theme.php
r39236 r39736 149 149 * 150 150 * @access private 151 * var string151 * @var string 152 152 */ 153 153 private $theme_root_uri; … … 193 193 /** 194 194 * Constructor for WP_Theme. 195 * 196 * @since 3.4.0 195 197 * 196 198 * @global array $wp_theme_directories … … 334 336 * When converting the object to a string, the theme name is returned. 335 337 * 338 * @since 3.4.0 339 * 336 340 * @return string Theme name, ready for display (translated) 337 341 */ … … 344 348 * 345 349 * @staticvar array $properties 350 * 351 * @since 3.4.0 346 352 * 347 353 * @param string $offset Property to check if set. … … 359 365 /** 360 366 * __get() magic method for properties formerly returned by current_theme_info() 367 * 368 * @since 3.4.0 361 369 * 362 370 * @param string $offset Property to get. … … 402 410 * Method to implement ArrayAccess for keys formerly returned by get_themes() 403 411 * 412 * @since 3.4.0 413 * 404 414 * @param mixed $offset 405 415 * @param mixed $value … … 410 420 * Method to implement ArrayAccess for keys formerly returned by get_themes() 411 421 * 422 * @since 3.4.0 423 * 412 424 * @param mixed $offset 413 425 */ … … 418 430 * 419 431 * @staticvar array $keys 432 * 433 * @since 3.4.0 420 434 * 421 435 * @param mixed $offset … … 441 455 * and care should be taken to use `$theme::display( 'Name' )` to get a properly 442 456 * translated header. 457 * 458 * @since 3.4.0 443 459 * 444 460 * @param mixed $offset … … 1227 1243 * This hits the filesystem. 1228 1244 * 1245 * @since 4.4.0 1246 * 1229 1247 * @return WP_Theme|false Object, or false if no theme is installed, which would be bad. 1230 1248 */
Note: See TracChangeset
for help on using the changeset viewer.