searchwp\query\output_suggested_search
Depuis : 4.0.0
Table des matières
Contrôlez si SearchWP suggère automatiquement des corrections de recherche.
Paramètres
| Type | Paramètre | Défaut | Depuis |
|---|---|---|---|
| Booléen | $enabled |
État de la case à cocher suggestions de recherche dans l’onglet Avancé de l’écran des paramètres de SearchWP | 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.
Activer les suggestions 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 | |
| // Enable automatic search suggestions in SearchWP. | |
| add_filter( 'searchwp\query\output_suggested_search', '__return_true' ); |

