In TwentyTwelve and TwentyThirteen, don't print the featurd image when viewing an attachment.

See #27243.


Built from https://develop.svn.wordpress.org/trunk@27331


git-svn-id: http://core.svn.wordpress.org/trunk@27183 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2014-02-28 22:09:18 +00:00
parent 80e69540b5
commit a0dc5fbd1e
1 changed files with 4 additions and 1 deletions

View File

@ -17,7 +17,10 @@
</div>
<?php endif; ?>
<header class="entry-header">
<?php the_post_thumbnail(); ?>
<?php if ( ! post_password_required() && ! is_attachment() ) :
the_post_thumbnail();
endif; ?>
<?php if ( is_single() ) : ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php else : ?>