mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 17:48:01 +01:00
Check for header image before showing it, in Twenty Ten. props koopersmith, see #14486 for trunk.
git-svn-id: http://svn.automattic.com/wordpress/trunk@15520 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
cae0e969ce
commit
a92dc7abaf
@ -73,7 +73,7 @@
|
|||||||
$image[1] >= HEADER_IMAGE_WIDTH ) :
|
$image[1] >= HEADER_IMAGE_WIDTH ) :
|
||||||
// Houston, we have a new header image!
|
// Houston, we have a new header image!
|
||||||
echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
|
echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
|
||||||
else : ?>
|
elseif ( get_header_image() ) : ?>
|
||||||
<img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
|
<img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div><!-- #branding -->
|
</div><!-- #branding -->
|
||||||
|
Loading…
Reference in New Issue
Block a user