Last active
January 3, 2016 18:29
-
-
Save psteinweber/8502698 to your computer and use it in GitHub Desktop.
#wordpress #thesis Custom header logo
This file contains hidden or 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
/* ========================================================================== | |
Custom header logo | |
========================================================================== */ | |
function custom_header() { ?> | |
<a href="/"><img src="/media/image.jpg" alt="alt text"></a> | |
<?php | |
} | |
remove_action('thesis_hook_header', 'thesis_default_header'); | |
add_action('thesis_hook_header', 'custom_header'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment