Last active
August 29, 2015 14:15
-
-
Save eri-trabiccolo/c9ff7f701bec02be3be0 to your computer and use it in GitHub Desktop.
container header
This file contains hidden or 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
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