Skip to content

Instantly share code, notes, and snippets.

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