searchwp\stopwords\suggestions\threshold
Depuis : 4.0.0
Table des matières
Contrôlez le seuil utilisé pour déterminer les suggestions de mots vides.
Paramètres
| Type | Paramètre | Défaut | Depuis |
|---|---|---|---|
| Flottant | $seuil |
0.3 | 4.0.0 |
Exemples
All hooks should be added to your custom SearchWP Customizations Plugin.
Personnaliser le seuil de suggestion des mots vides
Diminuez le seuil de suggestion des mots vides pour obtenir plus de suggestions de mots vides.
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 | |
| // Decrease SearchWP Stopword suggestion threshold to return more Stopword suggestions. | |
| add_filter( 'searchwp\stopwords\suggestions\threshold', function( $threshold ) { | |
| return 0.2; | |
| } ); |

