Created
June 20, 2014 01:16
-
-
Save scottnix/d08ecdb091582cc046ca to your computer and use it in GitHub Desktop.
Thematic Theme Add Logo Image to Header
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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