searchwp\query\partial_matches
Depuis : 4.0.0
Table des matières
Contrôlez si SearchWP applique sa logique de correspondance partielle lorsque nécessaire.
Paramètres
| Type | Paramètre | Défaut | Depuis | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Booléen | $enabled |
État de la case à cocher dans l'onglet Avancé des paramètres de SearchWP | 4.0.0 |
|||||||||
| Tableau |
$args
|
4.0.0 |
||||||||||
Exemples
All hooks should be added to your custom SearchWP Customizations Plugin.
Activer la correspondance partielle par programme
Activer la correspondance partielle par programme
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 | |
| // Programmatically enable partial matching in SearchWP. | |
| add_filter( 'searchwp\query\partial_matches', '__return_true' ); |

