Changeset 37313 for trunk/src/wp-includes/theme.php
- Timestamp:
- 04/26/2016 08:28:46 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme.php
r37308 r37313 1546 1546 * for post thumbnails. 1547 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 ); 1548 if ( is_array( $args[0] ) && isset( $_wp_theme_features['post-thumbnails'] ) ) { 1549 $args[0] = array_unique( array_merge( $_wp_theme_features['post-thumbnails'][0], $args[0] ) ); 1552 1550 } 1553 1551
Note: See TracChangeset
for help on using the changeset viewer.