Twenty Eleven: improve calls to get_header_image() - see #17240 and #17198

git-svn-id: http://svn.automattic.com/wordpress/trunk@17775 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
lancewillett 2011-04-29 22:22:19 +00:00
parent db11985bda
commit 62edbb753b
2 changed files with 7 additions and 3 deletions

View File

@ -286,7 +286,10 @@ function twentyeleven_admin_header_image() { ?>
?>
<h1><a id="name"<?php echo $style; ?> onclick="return false;" href="<?php echo home_url( '/' ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
<div id="desc"<?php echo $style; ?>><?php bloginfo( 'description' ); ?></div>
<img src="<?php esc_url ( header_image() ); ?>" alt="" />
<?php $header_image = get_header_image();
if ( ! empty( $header_image ) ) : ?>
<img src="<?php esc_url( $header_image ); ?>" alt="" />
<?php endif; ?>
</div>
<?php }
endif; // twentyeleven_admin_header_image

View File

@ -61,7 +61,8 @@
<?php
// Check to see if the header image has been removed
if ( get_header_image() != '' ) :
$header_image = get_header_image();
if ( ! empty( $header_image ) ) :
?>
<a href="<?php echo home_url( '/' ); ?>">
<?php
@ -83,7 +84,7 @@
// Has the text been hidden?
if ( 'blank' == get_header_textcolor() ) :
?>
<div class="only-search<?php if ( get_header_image() != '' ) : ?> with-image<?php endif; ?>">
<div class="only-search<?php if ( ! empty( $header_image ) ) : ?> with-image<?php endif; ?>">
<?php get_search_form(); ?>
</div>
<?php