SearchWP

This Documentation is for SearchWP Version 3

Available since: 3.0

searchwp_term_highlight_occurrence

View Parameters »

When highlighting is enabled, SearchWP will highlight the first occurrence of a match when generating an excerpt. If you’d like to modify which occurrence SearchWP uses to highlight, you can use this hook:

<?php
// Tell SearchWP to highlight the second occurrence, not the first.
add_filter( 'searchwp_term_highlight_occurrence', function( $occurrence, $args ) {
return 2;
}, 20, 2 );
view raw functions.php hosted with ❤ by GitHub

Parameters

Parameter Type Description
$occurrence Integer

Which occurrence to highlight

$args Array

$args['query'] The search query

[wpforms id="3080"]