Skip to content

Instantly share code, notes, and snippets.

@kristarella
Created March 25, 2019 05:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kristarella/85cf80db552803242366d610ef86e282 to your computer and use it in GitHub Desktop.
Save kristarella/85cf80db552803242366d610ef86e282 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'the_content', 'add_thing_to_search_page' );
function add_thing_to_search_page( $content ) {
// Check if it's the search page
if ( is_search() ) {
$mycode = 'Put your HTML here';
return $mycode . $content;
}
return $content;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment