Skip to content

Instantly share code, notes, and snippets.

@ovizii
Created August 15, 2013 10:41
Show Gist options
  • Select an option

  • Save ovizii/6239909 to your computer and use it in GitHub Desktop.

Select an option

Save ovizii/6239909 to your computer and use it in GitHub Desktop.
Highlight search terms on results page
//To highlight the term that was searched in search results, open up search.php and replace the_title(); with echo $title;. Above this line add the following code.
<?php
$title = get_the_title();
$keys= explode(" ",$s);
$title = preg_replace('/('.implode('|', $keys) .')/iu',
'<strong class="search-excerpt">�</strong>',
$title);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment