Is it possible to highlight the word you searched for in the search results, for instance in a different color.
Highlight search result
(3 posts) (2 voices)-
Posted 1 year ago #
-
you can add this code to search.php (in the top after get_header) to add a search-highlight class to words searched for:
function search_highlight($content) { $s = $_REQUEST['s']; $keys = explode(" ",$s); return preg_replace('/('.implode('|', $keys) .')/iu', '<span class="search-highlight">$1</span>', $content); } add_filter('the_content', 'search_highlight');then you style like this:
.search-highlight { color: #660000; }Posted 1 year ago # -
Thank you very much, exactly what i wanted.
Posted 1 year ago #
Reply
You must log in to post.