Created
August 11, 2015 17:03
-
-
Save contempoinc/d00865c2a5bcb71c0188 to your computer and use it in GitHub Desktop.
my_custom_header_text()
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
// This is your function, you can name it anything you want | |
function my_custom_header_text() { ?> | |
<div class="my-custom-class clear">Some Text, could be anything though</div> | |
<?php } | |
// This is the action function that outputs the function above into the theme hook | |
add_action( 'ct_before_header', 'my_custom_header_text', 999 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment