Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created February 14, 2019 17:30
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 jchristopher/a0ac5ddbd7cb51ec5888aba0e5cbbc5b to your computer and use it in GitHub Desktop.
Save jchristopher/a0ac5ddbd7cb51ec5888aba0e5cbbc5b to your computer and use it in GitHub Desktop.
Tell SearchWP to use the 2nd occurrence of the search term when finding highlights
<?php
// Use the second occurrence of the search term when finding what to highlight.
function my_searchwp_term_highlight_occurrence( $occurrence ) {
return 2;
}
apply_filters( 'searchwp_term_highlight_occurrence', 'my_searchwp_term_highlight_occurrence' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment