Created
August 27, 2014 01:37
-
-
Save michaelcarwile/e45ad442bc7840a0f55a to your computer and use it in GitHub Desktop.
Genesis top bar area
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 | |
// *copy below this line | |
//* Add top bar to site (loads above header and everything else) | |
add_action( 'genesis_before', 'top_bar' ); | |
function top_bar() { ?> | |
<div id="top-bar-area"> | |
<div class="wrap"> | |
<!-- custom content here --> | |
</div> | |
</div> | |
<?php } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment