Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 26, 2019 14:38
Embed
What would you like to do?
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