Changeset 39276 for trunk/src/wp-includes/theme.php
- Timestamp:
- 11/17/2016 08:17:57 AM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/theme.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme.php
r39272 r39276 1825 1825 function get_theme_starter_content() { 1826 1826 $theme_support = get_theme_support( 'starter-content' ); 1827 if ( ! empty( $theme_support) ) {1827 if ( is_array( $theme_support ) && ! empty( $theme_support[0] ) && is_array( $theme_support[0] ) ) { 1828 1828 $config = $theme_support[0]; 1829 1829 } else {
Note: See TracChangeset
for help on using the changeset viewer.