Skip to content

Instantly share code, notes, and snippets.

@eri-trabiccolo
Last active August 29, 2015 14:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eri-trabiccolo/c9ff7f701bec02be3be0 to your computer and use it in GitHub Desktop.
Save eri-trabiccolo/c9ff7f701bec02be3be0 to your computer and use it in GitHub Desktop.
container header
add_action('__header', 'tc_header_container_start', 0);
function tc_header_container_start(){
echo '<div class="tc-header-container container">';
}
add_action('__header', 'tc_header_container_end', 100);
function tc_header_container_end(){
echo '</div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment