Skip to content

Instantly share code, notes, and snippets.

Created February 20, 2017 17:20
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 anonymous/fb44b915b183140dba12d2fbfb9daaf8 to your computer and use it in GitHub Desktop.
Save anonymous/fb44b915b183140dba12d2fbfb9daaf8 to your computer and use it in GitHub Desktop.
<?php
$titel = get_the_title();
$auszug = get_the_excerpt();
$suchwort = chop(get_search_query() );
$wert = explode(" ",$suchwort);
$titel = preg_replace('/('.implode('|', $wert) .')/iu','<mark>\0</mark>',$titel);
$auszug = preg_replace('/('.implode('|', $wert) .')/iu','<mark>\0</mark>', $auszug);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment