Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created February 14, 2019 17:21
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/cb927316524fa3830d82a848994e32e2 to your computer and use it in GitHub Desktop.
Save jchristopher/cb927316524fa3830d82a848994e32e2 to your computer and use it in GitHub Desktop.
Customize SearchWP's highlighting minimum word length
<?php
// Only highlight terms that are 5 characters or longer.
function searchwp_minimum_word_length( $length ) {
return 5;
}
add_filter( 'searchwp_minimum_word_length', 'my_searchwp_minimum_word_length' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment