Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 24, 2019 18:26
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/0a265d72f3f587b25536e224d29810c5 to your computer and use it in GitHub Desktop.
Save jchristopher/0a265d72f3f587b25536e224d29810c5 to your computer and use it in GitHub Desktop.
Change SearchWP's partial match (LIKE logic) minimum word length
<?php
// Change SearchWP's partial match (LIKE logic) minimum word length.
add_filter( 'searchwp_like_min_length', function( $length ) {
return 4;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment