From 21ed02204d06c5cc89093fde50e099318c0713bc Mon Sep 17 00:00:00 2001 From: Lance Willett Date: Thu, 14 Nov 2013 04:45:45 +0000 Subject: [PATCH] Twenty Fourteen: remove unused class name, props obenland. See #25946. git-svn-id: https://develop.svn.wordpress.org/trunk@26151 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentyfourteen/functions.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/wp-content/themes/twentyfourteen/functions.php b/src/wp-content/themes/twentyfourteen/functions.php index 5b8c6c4026..d485918d80 100644 --- a/src/wp-content/themes/twentyfourteen/functions.php +++ b/src/wp-content/themes/twentyfourteen/functions.php @@ -425,8 +425,6 @@ add_filter( 'body_class', 'twentyfourteen_body_classes' ); function twentyfourteen_post_classes( $classes ) { if ( ! post_password_required() && has_post_thumbnail() ) $classes[] = 'has-post-thumbnail'; - else - $classes[] = 'no-post-thumbnail'; return $classes; }