searchwp\query\logic\and
Since: 4.0.0
Table of Contents
Control whether AND
logic is performed.
Parameters
Type | Parameter | Default | Since |
---|---|---|---|
Boolean | $enabled |
true |
4.0.0 |
\SearchWP\Query | $query |
The Query being run | 4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Disable AND logic
<?php | |
// Disable AND logic in SearchWP. | |
add_filter( | |
'searchwp\query\logic\and', | |
function( $enabled, $query ) { | |
return false; | |
}, | |
30, 2 | |
); |