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:
parent
6df629fb02
commit
8dd1261904
|
@ -12,7 +12,7 @@
|
|||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
<header class="entry-header">
|
||||
<?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
|
||||
<?php if ( has_post_thumbnail() && ! post_password_required() && ! is_attachment() ) : ?>
|
||||
<div class="entry-thumbnail">
|
||||
<?php the_post_thumbnail(); ?>
|
||||
</div>
|
||||
|
|
|
@ -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 : ?>
|
||||
|
|
Loading…
Reference in New Issue