Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 24, 2019 13:31
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/cb5f46eda282ecdd7acc04af5b3a4a1d to your computer and use it in GitHub Desktop.
Save jchristopher/cb5f46eda282ecdd7acc04af5b3a4a1d to your computer and use it in GitHub Desktop.
Increase SearchWP's fuzzy match minimum length
<?php
// Increase SearchWP's fuzzy match minimum length.
add_filter( 'searchwp_fuzzy_min_length', function( $length ) {
return 4;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment