Skip to content

Instantly share code, notes, and snippets.

@scottnix
Created June 20, 2014 01:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottnix/d08ecdb091582cc046ca to your computer and use it in GitHub Desktop.
Save scottnix/d08ecdb091582cc046ca to your computer and use it in GitHub Desktop.
Thematic Theme Add Logo Image to Header
function childtheme_override_blogtitle() {
?>
<div id="blog-title" class="site-title">
<span>
<a href="<?php echo home_url() ?>/" title="<?php bloginfo('name') ?>" rel="home">
<img src="http://placekitten.com/300/150">
</a>
</span>
</div>
<?php
}
add_action( 'thematic_header','thematic_blogtitle', 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment