header - a href not working on get_header_image in Starkers Wordpress Theme -


i've added custom header image starkers theme image not link home page. i'm wondering if need direct "parts" foldler in theme?

here code in header:

    <header id="branding">     <hgroup id="blog-title">          <!--shows header-image if there 1 -->         <?php $header_image = get_header_image();             if ( ! empty( $header_image ) ) : ?>                 <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">                 <img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" /></a>             <?php  // if ( ! empty( $header_image ) ) ?>              <!--shows site-title , site-description if there no header-image -->                   <?php else: ?>                 <h1 id="site-title"><a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1>                 <h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>             <?php endif  ?>              </hgroup> </header><!-- end #branding --> 

i'm new insight helpful. feel may simple fix i'm not getting.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -