searchwp\stopwords\suggestions\limit
Desde: 4.0.0
Tabla de contenidos
Controla el número de sugerencias de palabras vacías que muestra SearchWP.
Parámetros
| Tipo | Parámetro | Predeterminado | Desde |
|---|---|---|---|
| Entero | $limit |
20 | 4.0.0 |
Ejemplos
All hooks should be added to your custom SearchWP Customizations Plugin.
Cambiar el número de palabras irrelevantes sugeridas
Modificar el número de sugerencias de palabras irrelevantes que se muestran
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; | |
| } ); |

