Created
March 8, 2015 15:21
-
-
Save fovoc/96714e8d465e2102dd69 to your computer and use it in GitHub Desktop.
Shoestrap 3 - wrapper for Extra Header, Jumbotron, Secondary NavBar and Breadcrumbs
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 | |
add_action( 'shoestrap_pre_wrap', 'opening_tag', 1 ); | |
add_action( 'shoestrap_pre_wrap', 'closing_tag', 99 ); | |
function opening_tag() { | |
echo '<div id="my_header">'; | |
} | |
function closing_tag() { | |
echo '</div>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment