searchwp\stopwords\suggestions\threshold
Da: 4.0.0
Indice
Controlla la soglia utilizzata per determinare le parole d'arresto suggerite.
Parametri
| Tipo | Parametro | Predefinito | Da |
|---|---|---|---|
| Float | $threshold |
0.3 | 4.0.0 |
Esempi
All hooks should be added to your custom SearchWP Customizations Plugin.
Personalizza la soglia dei suggerimenti per le parole d'arresto
Riduci la soglia dei suggerimenti per le parole d'arresto per ottenere più suggerimenti di parole d'arresto.
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; | |
| } ); |

