Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 24, 2020 01:22
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/e0bb26ffc7aab75621862a75d0d5e7de to your computer and use it in GitHub Desktop.
Save jchristopher/e0bb26ffc7aab75621862a75d0d5e7de 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