searchwp\query\tokens\limit
Desde: 4.0.0
Sumário
Controle o número máximo de tokens de pesquisa aceitos.
Parâmetros
| Tipo | Parâmetro | Padrão | Desde |
|---|---|---|---|
| Inteiro | $max |
10 |
4.0.0 |
| \SearchWP\Query | $query |
A consulta que está sendo executada | 4.0.0 |
Exemplos
All hooks should be added to your custom SearchWP Customizations Plugin.
Aceitar até 12 termos de pesquisa
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 ); |

