searchwp\query\output_suggested_search
Da: 4.0.0
Indice
Controlla se SearchWP suggerisce automaticamente correzioni di ricerca.
Parametri
| Tipo | Parametro | Predefinito | Da |
|---|---|---|---|
| Booleano | $enabled |
Stato della casella di controllo suggerimenti di ricerca nella scheda Avanzate della schermata delle impostazioni di SearchWP | 4.0.0 |
| \SearchWP\Query | $query |
La Query in esecuzione | 4.0.0 |
Esempi
Tutti gli hook dovrebbero essere aggiunti al tuo plugin personalizzato SearchWP Customizations Plugin.
Abilita suggerimenti di ricerca
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 | |
| // Enable automatic search suggestions in SearchWP. | |
| add_filter( 'searchwp\query\output_suggested_search', '__return_true' ); |
