Skip to content

Instantly share code, notes, and snippets.

@eri-trabiccolo
Created March 18, 2015 14:52
Show Gist options
  • Save eri-trabiccolo/2261d2942d92974e3159 to your computer and use it in GitHub Desktop.
Save eri-trabiccolo/2261d2942d92974e3159 to your computer and use it in GitHub Desktop.
add something below the search box in no results pages
add_filter( 'tc_no_result_content', 'add_something_below_search_box' );
function add_something_below_search_box( $_html){
$html = 'something';
return str_replace('</form>', '</form>'.$html, $_html);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment