Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created February 14, 2019 17:30
Embed
What would you like to do?
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