SearchWP

searchwp\query\logic\and

Since: 4.0.0

Table of Contents

Control whether AND logic is performed.

Note: By default AND logic will be skipped if the token threshold is breached. The default threshold is 5 but can be customized with the searchwp\query\logic\and\token_threshold hook.

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 );

How to use this code