Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Last active December 20, 2015 14:39
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/4c7062247a672516fd4b to your computer and use it in GitHub Desktop.
Save jchristopher/4c7062247a672516fd4b to your computer and use it in GitHub Desktop.
Change the minimum number of characters SearchWP requires for indexing and searching
<?php
function my_searchwp_minimum_word_length() {
// index and search for words with at least two characters
return 2;
}
add_filter( 'searchwp_minimum_word_length', 'my_searchwp_minimum_word_length' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment