Created
May 14, 2013 01:23
-
-
Save shaynesanderson-zz/5572921 to your computer and use it in GitHub Desktop.
Genesis custom 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
<?php | |
remove_action('genesis_header', 'genesis_do_header'); | |
add_action('genesis_header', 'custom_header'); | |
function custom_header() { | |
?> | |
<div id="logo"> | |
<a href="<?php echo get_bloginfo('url'); ?>"><img src="<?php echo CHILD_URL.'/images/logo.png'; ?>" width="250" height="290" alt="" /></a> | |
</div> | |
<div id="header-right"> | |
<a href="#"><img src="<?php echo CHILD_URL; ?>/images/header_default.jpg" alt="" /></a> | |
</div> | |
<?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment