Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 26, 2019 14:41
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/1948356363075a9bd6c5ff0c6e76bdd1 to your computer and use it in GitHub Desktop.
Save jchristopher/1948356363075a9bd6c5ff0c6e76bdd1 to your computer and use it in GitHub Desktop.
Control the threshold SearchWP uses when suggesting stopwords
<?php
// Tell SearchWP to suggest stopwords only if they appear in 50% of entries.
add_filter( 'searchwp_stopwords_suggestions_threshold', function( $threshold ) {
return 0.5;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment