Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Last active March 24, 2020 13:25
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/d917f3bbc9aa5f783527f9630f08fdad to your computer and use it in GitHub Desktop.
Save jchristopher/d917f3bbc9aa5f783527f9630f08fdad to your computer and use it in GitHub Desktop.
Customize the minimum length of fuzzy match tokens in SearchWP
<?php
// Customize the minimum length of fuzzy match tokens in SearchWP.
add_filter(
'searchwp\query\partial_matches\fuzzy\minimum_length',
function( $length ) {
return 5;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment