Changeset 37308 for trunk/src/wp-includes/theme.php
- Timestamp:
- 04/26/2016 05:04:25 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme.php
r37092 r37308 1536 1536 1537 1537 switch ( $feature ) { 1538 case 'post-thumbnails': 1539 // All post types are already supported. 1540 if ( true === get_theme_support( 'post-thumbnails' ) ) { 1541 return; 1542 } 1543 1544 /* 1545 * Merge post types with any that already declared their support 1546 * for post thumbnails. 1547 */ 1548 if ( is_array( $args[0] ) && is_array( $_wp_theme_features['post-thumbnails'][0] ) ) { 1549 $post_types = array_unique( array_merge( $args[0], $_wp_theme_features['post-thumbnails'][0] ) ); 1550 1551 $args = array( $post_types ); 1552 } 1553 1554 break; 1555 1538 1556 case 'post-formats' : 1539 1557 if ( is_array( $args[0] ) ) {
Note: See TracChangeset
for help on using the changeset viewer.