searchwp\stopwords\suggestions\threshold
Desde: 4.0.0
Sumário
Controle o limite usado para determinar Stopwords sugeridas.
Parâmetros
| Tipo | Parâmetro | Padrão | Desde |
|---|---|---|---|
| Float | $threshold |
0.3 | 4.0.0 |
Exemplos
All hooks should be added to your custom SearchWP Customizations Plugin.
Personalizar limite de sugestões de stopwords
Diminuir o limite de sugestões de stopwords para retornar mais sugestões de stopwords.
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; | |
| } ); |

