Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Last active March 16, 2022 16:27
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 searchwpgists/e7a90d25dd96b30755c571bd0c2eb515 to your computer and use it in GitHub Desktop.
Save searchwpgists/e7a90d25dd96b30755c571bd0c2eb515 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