Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Last active March 16, 2022 16: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 searchwpgists/d97ac31e9c57fab6c5dfc377753314e4 to your computer and use it in GitHub Desktop.
Save searchwpgists/d97ac31e9c57fab6c5dfc377753314e4 to your computer and use it in GitHub Desktop.
Disable SearchWP's "Did you mean?" functionality
<?php
// Disable SearchWP's "Did you mean?" functionality.
add_filter( 'searchwp\query\partial_matches\did_you_mean', function( $enabled, $args ) {
return false;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment