Skip to content

Instantly share code, notes, and snippets.

@scottnix
Last active December 24, 2015 19:19
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/6849523 to your computer and use it in GitHub Desktop.
Save scottnix/6849523 to your computer and use it in GitHub Desktop.
Change Thematic Blog Title to Logo or Image
// replace the site title text with an image that links back to homepage, usually for logos
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/100/100" alt="<?php bloginfo('name') ?>" />
</a>
</span>
</div>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment