Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 24, 2019 18:31
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/afc77819207c9f229c2646ee20684a22 to your computer and use it in GitHub Desktop.
Save jchristopher/afc77819207c9f229c2646ee20684a22 to your computer and use it in GitHub Desktop.
Tell SearchWP to use keyword stems for partial matches
<?php
// Tell SearchWP to use keyword stems for partial matches.
add_filter( 'searchwp_like_stem', function( $use_stem, $terms, $engine ) {
return true;
}, 20, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment