Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 27, 2020 13:01
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/d1603e2e4c76ecefb2f6f4c032b41504 to your computer and use it in GitHub Desktop.
Save jchristopher/d1603e2e4c76ecefb2f6f4c032b41504 to your computer and use it in GitHub Desktop.
Disable AND logic in SearchWP
<?php
// Disable AND logic in SearchWP.
add_filter(
'searchwp\query\logic\and',
function( $enabled, $query ) {
return false;
},
30, 2
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment