Skip to content

Instantly share code, notes, and snippets.

@philiparthurmoore
Created July 20, 2012 07:05
Show Gist options
  • Save philiparthurmoore/9fc256bb807eadd20caa to your computer and use it in GitHub Desktop.
Save philiparthurmoore/9fc256bb807eadd20caa to your computer and use it in GitHub Desktop.
//from
<a title="<?php bloginfo('name'); ?>" href="<?php bloginfo('url'); ?>"><img src="<?php echo header_image(); ?>"/></a>
//to
<a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><img src="<?php echo header_image(); ?>" alt=""/></a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment