Created
August 15, 2013 10:41
-
-
Save ovizii/6239909 to your computer and use it in GitHub Desktop.
Highlight search terms on results page
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
| //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