Another s/default/standard/. see #15582

git-svn-id: https://develop.svn.wordpress.org/trunk@16693 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2010-12-02 21:24:41 +00:00
parent a7dbb545d9
commit f842407e05
1 changed files with 2 additions and 2 deletions

View File

@ -334,7 +334,7 @@ function get_post_class( $class = '', $post_id = null ) {
if ( $post_format && !is_wp_error($post_format) )
$classes[] = 'format-' . sanitize_html_class( $post_format );
else
$classes[] = 'format-default';
$classes[] = 'format-standard';
// post requires password
if ( post_password_required($post->ID) )
@ -435,7 +435,7 @@ function get_body_class( $class = '' ) {
if ( $post_format && !is_wp_error($post_format) )
$classes[] = 'single-format-' . sanitize_html_class( $post_format );
else
$classes[] = 'single-format-default';
$classes[] = 'single-format-standard';
if ( is_attachment() ) {
$mime_type = get_post_mime_type($post_id);