Skip to content

Instantly share code, notes, and snippets.

@webgurus
Created November 24, 2014 09:46
Show Gist options
  • Save webgurus/00180fd576eb37b57be4 to your computer and use it in GitHub Desktop.
Save webgurus/00180fd576eb37b57be4 to your computer and use it in GitHub Desktop.
Highlight WP Search results
// HIGHLIGHT SEARCH RESULTS
function wps_highlight_results($text){
if(is_search()){
$sr = get_query_var('s');
$keys = explode(" ",$sr);
$text = preg_replace('/('.implode('|', $keys) .')/iu', '<span class="label label-default">'.$sr.'</span>', $text);
}
return $text;
}
add_filter('the_excerpt', 'wps_highlight_results');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment