Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 23, 2020 20:37
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/e464b98240533cc2741af78a6788426e to your computer and use it in GitHub Desktop.
Save jchristopher/e464b98240533cc2741af78a6788426e to your computer and use it in GitHub Desktop.
Force partial matches in SearchWP even when matches are found using provided search
<?php
// Force partial matches in SearchWP even when matches are found using provided search.
add_filter( 'searchwp\query\partial_matches\force', function( $force, $args ) {
return true;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment