Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 24, 2019 13: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 jchristopher/b63dcdaa46ad5c89e868ff999a06b5f5 to your computer and use it in GitHub Desktop.
Save jchristopher/b63dcdaa46ad5c89e868ff999a06b5f5 to your computer and use it in GitHub Desktop.
Increase SearchWP's fuzzy digit threshold
<?php
// Increase SearchWP's fuzzy digit threshold.
add_filter( 'searchwp_fuzzy_digit_threshold', function( $threshold ) {
return 90;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment