Skip to content

Instantly share code, notes, and snippets.

@fovoc
Created March 8, 2015 15:21
Show Gist options
  • Save fovoc/96714e8d465e2102dd69 to your computer and use it in GitHub Desktop.
Save fovoc/96714e8d465e2102dd69 to your computer and use it in GitHub Desktop.
Shoestrap 3 - wrapper for Extra Header, Jumbotron, Secondary NavBar and Breadcrumbs
<?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