| 1756 | | if ( $feature == 'post-formats' && is_array( $_wp_theme_features[$feature][0] ) ) |
| 1757 | | $_wp_theme_features[$feature][0] = array_intersect( $_wp_theme_features[$feature][0], array_keys( get_post_format_slugs() ) ); |
| | 1756 | if ( $feature == 'post-formats' && is_array( $_wp_theme_features[$feature][0] ) ) { |
| | 1757 | $slugs = get_post_format_slugs(); |
| | 1758 | unset( $slugs['standard'] ); |
| | 1759 | $_wp_theme_features[$feature][0] = array_intersect( $_wp_theme_features[$feature][0], array_keys( $slugs ) ); |
| | 1760 | } |