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