Skip to content

Instantly share code, notes, and snippets.

@dcooney
Created May 9, 2014 18: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 dcooney/65202bcee048a07a7805 to your computer and use it in GitHub Desktop.
Save dcooney/65202bcee048a07a7805 to your computer and use it in GitHub Desktop.
Hightlight search term WordPress
<?php
$title = get_the_title();
$title_keys= explode(" ",$term);
$title = preg_replace('/('.implode('|', $title_keys) .')/iu', '<span class="highlight">\0</span>', $title);
echo $title;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment