Change the minimum character count for SearchWP LIKE Terms
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Apply LIKE matching for terms 2 or more characters in length. | |
function searchwp_like_min_length( $length ) { | |
return 2; | |
} | |
add_filter( 'searchwp_like_min_length', 'my_searchwp_like_min_length' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, the function names don't match. The function should be my_searchwp_like_min_length()