searchwp\stopwords\suggestions\threshold
Seit: 4.0.0
Steuern Sie den Schwellenwert, der zur Bestimmung von vorgeschlagenen Stoppwörtern verwendet wird.
Parameter
| Typ | Parameter | Standard | Seit |
|---|---|---|---|
| Gleitkommazahl | $Grenzwert |
0.3 | 4.0.0 |
Beispiele
All hooks should be added to your custom SearchWP Customizations Plugin.
Schwellenwert für Stoppwortvorschläge anpassen
Reduzieren Sie den Schwellenwert für Stoppwortvorschläge, um mehr Stoppwortvorschläge zurückzugeben.
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; | |
| } ); |

