Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Last active January 13, 2021 14:30
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/f08cf9ac0535836d02eb0c4dd26023ef to your computer and use it in GitHub Desktop.
Save jchristopher/f08cf9ac0535836d02eb0c4dd26023ef to your computer and use it in GitHub Desktop.
Disable minimum character length for tokens (search terms) in SearchWP
<?php
// Reduce SearchWP's minimum character length to 2 (default is 3).
add_filter( 'searchwp\tokens\minimum_length', function( $min ) {
return 2;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment