mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-10 23:54:33 +00:00
In TwentyTwelve and TwentyThirteen, don't print the featurd image when viewing an attachment.
See #27243. git-svn-id: https://develop.svn.wordpress.org/trunk@27331 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -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 : ?>
|
||||
|
||||
Reference in New Issue
Block a user