Check for header image before showing it, in Twenty Ten. props koopersmith, fixes #14486 for 3.0.
git-svn-id: http://svn.automattic.com/wordpress/branches/3.0@15783 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
25e2790f37
commit
842d1b4e51
|
@ -73,7 +73,7 @@
|
|||
$image[1] >= HEADER_IMAGE_WIDTH ) :
|
||||
// Houston, we have a new header image!
|
||||
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="" />
|
||||
<?php endif; ?>
|
||||
</div><!-- #branding -->
|
||||
|
|
Loading…
Reference in New Issue