searchwp\query\logic\phrase
Since: 4.0.0
Table of Contents
Control whether SearchWP supports quoted phrases.
Parameters
Type | Parameter | Default | Since |
---|---|---|---|
Boolean | $enabled |
State of checkbox on Advanced tab of SearchWP settings screen | 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.
Enable quoted search support
<?php | |
// Enable quoted search support in SearchWP. | |
add_filter( | |
'searchwp\query\logic\phrase', | |
function( $enabled, $query ) { | |
return false; | |
}, | |
30, 2 | |
); |