searchwp\query\tokens\limit
Depuis : 4.0.0
Table des matières
Contrôler le nombre maximum de jetons de recherche acceptés.
Paramètres
| Type | Paramètre | Défaut | Depuis |
|---|---|---|---|
| Entier | $max |
10 |
4.0.0 |
| \SearchWP\Query | $requête |
La requête en cours d'exécution | 4.0.0 |
Exemples
All hooks should be added to your custom SearchWP Customizations Plugin.
Acceptez jusqu'à 12 termes de recherche
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Accept up to 12 search terms in SearchWP. | |
| add_filter( 'searchwp\query\tokens\limit', function( $max, $query ) { | |
| return 12; | |
| }, 30, 2 ); |

