You appear to be a bot. Output may be restricted
Description
Create the custom header image markup displayed on the Appearance > Header screen.
Usage
twentyfourteen_admin_header_image();
Parameters
Returns
void
Source
File name: twentyfourteen/inc/custom-header.php
Lines:
1 to 10 of 10
function twentyfourteen_admin_header_image() { ?> <div id="headimg"> <?php if ( get_header_image() ) : ?> <img src="<?php header_image(); ?>" alt=""> <?php endif; ?> <h1 class="displaying-header-text"><a id="name" style="<?php echo esc_attr( sprintf( 'color: #%s;', get_header_textcolor() ) ); ?>" onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>" tabindex="-1"><?php bloginfo( 'name' ); ?></a></h1> </div> <?php }