Ignore unsupported post types in add_theme_support(). Props garyc40. fixes #16073

git-svn-id: http://svn.automattic.com/wordpress/trunk@17213 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2011-01-03 23:56:42 +00:00
parent 4066dde395
commit 2de6f5ba96
1 changed files with 3 additions and 0 deletions

View File

@ -1754,6 +1754,9 @@ function add_theme_support( $feature ) {
$_wp_theme_features[$feature] = true;
else
$_wp_theme_features[$feature] = array_slice( func_get_args(), 1 );
if ( $feature == 'post-formats' && is_array( $_wp_theme_features[$feature][0] ) )
$_wp_theme_features[$feature][0] = array_intersect( $_wp_theme_features[$feature][0], array_keys( get_post_format_slugs() ) );
}
/**