Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 21, 2020 02:00
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/92f6f96365d70737b50cbdf4ffd6295c to your computer and use it in GitHub Desktop.
Save jchristopher/92f6f96365d70737b50cbdf4ffd6295c to your computer and use it in GitHub Desktop.
<?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