Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 26, 2019 14:38
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/5a7c9b38d63fa11ea75e7dba6a5f63a7 to your computer and use it in GitHub Desktop.
Save jchristopher/5a7c9b38d63fa11ea75e7dba6a5f63a7 to your computer and use it in GitHub Desktop.
Increase the number of SearchWP stopword suggestions
<?php
// Increase the number of SearchWP stopword suggestions.
add_filter( 'searchwp_stopwords_suggestions_limit', function( $limit ) {
return 30;
} )'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment