SearchWP

searchwp\query\tokens\limit

Since: 4.0.0

Table of Contents

Control the maximum number of accepted search tokens.

Parameters

Type Parameter Default Since
Integer $max 10 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.

Accept up to 12 search terms

<?php
// Accept up to 12 search terms in SearchWP.
add_filter( 'searchwp\query\tokens\limit', function( $max, $query ) {
return 12;
}, 30, 2 );

How to use this code