Skip to content

Instantly share code, notes, and snippets.

@contempoinc
Created August 11, 2015 17:03
Show Gist options
  • Save contempoinc/d00865c2a5bcb71c0188 to your computer and use it in GitHub Desktop.
Save contempoinc/d00865c2a5bcb71c0188 to your computer and use it in GitHub Desktop.
my_custom_header_text()
// 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