Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Last active March 16, 2022 16:26
Show Gist options
  • Save searchwpgists/8128187ab3970b975885fa470135c6d6 to your computer and use it in GitHub Desktop.
Save searchwpgists/8128187ab3970b975885fa470135c6d6 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