searchwp\stopwords\suggestions\threshold
Desde: 4.0.0
Tabla de contenidos
Controla el umbral utilizado para determinar las palabras vacías sugeridas.
Parámetros
| Tipo | Parámetro | Predeterminado | Desde |
|---|---|---|---|
| Flotante | $umbral |
0.3 | 4.0.0 |
Ejemplos
All hooks should be added to your custom SearchWP Customizations Plugin.
Personalizar umbral de sugerencias de palabras vacías
Disminuir el umbral de sugerencias de palabras vacías para devolver más sugerencias de palabras vacías.
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; | |
| } ); |

