searchwp\stopwords\suggestions\limit
Desde: 4.0.0
Sumário
Controle o número de sugestões de Stopwords mostradas pelo SearchWP.
Parâmetros
| Tipo | Parâmetro | Padrão | Desde |
|---|---|---|---|
| Inteiro | $limit |
20 | 4.0.0 |
Exemplos
All hooks should be added to your custom SearchWP Customizations Plugin.
Alterar o número de palavras irrelevantes sugeridas
Modificar o número de sugestões de palavras irrelevantes exibidas
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; | |
| } ); |

