searchwp\stopwords\suggestions\limit
Da: 4.0.0
Indice
Controlla il numero di suggerimenti di parole d'arresto mostrati da SearchWP.
Parametri
| Tipo | Parametro | Predefinito | Da |
|---|---|---|---|
| Intero | $limit |
20 | 4.0.0 |
Esempi
All hooks should be added to your custom SearchWP Customizations Plugin.
Modifica il numero di parole ignorate suggerite
Modifica il numero di suggerimenti di parole ignorate visualizzati
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; | |
| } ); |

