Skip to content

Instantly share code, notes, and snippets.

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