Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created September 25, 2019 14:16
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/906ed1fb9cb799102478a5d7ab08c00f to your computer and use it in GitHub Desktop.
Save jchristopher/906ed1fb9cb799102478a5d7ab08c00f to your computer and use it in GitHub Desktop.
Programmatically enable "Did you mean?" search corrections in SearchWP 3.1+
<?php
// Enables "Did you mean?" search corrections in SearchWP.
add_filter( 'searchwp_do_suggestions', function( $enabled, $args ) {
// $args contains the search arguments.
return true;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment