searchwp\stopwords\suggestions\limit
Depuis : 4.0.0
Table des matières
Contrôlez le nombre de suggestions de mots vides affichées par SearchWP.
Paramètres
| Type | Paramètre | Défaut | Depuis |
|---|---|---|---|
| Entier | $limit |
20 | 4.0.0 |
Exemples
All hooks should be added to your custom SearchWP Customizations Plugin.
Changer le nombre de mots vides suggérés
Modifier le nombre de suggestions de mots vides qui sont affichées
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 | |
| // Modify the number of Stopwords suggestions that are shown. | |
| add_filter( 'searchwp\stopwords\suggestions\limit', function( $limit ) { | |
| return 25; | |
| } ); |

