Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Created March 28, 2022 13: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 searchwpgists/7daf1db2fd2293a3d09137f037d96d46 to your computer and use it in GitHub Desktop.
Save searchwpgists/7daf1db2fd2293a3d09137f037d96d46 to your computer and use it in GitHub Desktop.
Decrease SearchWP Stopword suggestion threshold to return more Stopword suggestions.
<?php
// Decrease SearchWP Stopword suggestion threshold to return more Stopword suggestions.
add_filter( 'searchwp\stopwords\suggestions\threshold', function( $threshold ) {
return 0.2;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment