Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 26, 2019 15:22
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/ea32562fc2f1699dc4fb7558b78e268e to your computer and use it in GitHub Desktop.
Save jchristopher/ea32562fc2f1699dc4fb7558b78e268e to your computer and use it in GitHub Desktop.
Control which SearchWP engines receive highlights
<?php
add_filter( 'searchwp_th_excluded_engines', function( $engines ) {
// Prevent highlighting for 'supplemental' engine.
$engines[] = 'supplemental';
return $engines;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment