Only add the post format post classes when the post type supports post formats. posts posts posts posts. props iandstewart, fixes #16224.

git-svn-id: https://develop.svn.wordpress.org/trunk@17292 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2011-01-13 23:02:24 +00:00
parent af64a47f5d
commit dc864d94e8
1 changed files with 6 additions and 4 deletions

View File

@ -331,10 +331,12 @@ function get_post_class( $class = '', $post_id = null ) {
// Post Format
$post_format = get_post_format( $post->ID );
if ( $post_format && !is_wp_error($post_format) )
$classes[] = 'format-' . sanitize_html_class( $post_format );
else
$classes[] = 'format-standard';
if ( post_type_supports( $post->post_type, 'post-formats' ) ) {
if ( $post_format && !is_wp_error($post_format) )
$classes[] = 'format-' . sanitize_html_class( $post_format );
else
$classes[] = 'format-standard';
}
// post requires password
if ( post_password_required($post->ID) )