searchwp\stopwords\suggestions\threshold
Since: 4.0.0
Table of Contents
Control the threshold used to determine suggested Stopwords.
Parameters
Type | Parameter | Default | Since |
---|---|---|---|
Float | $threshold |
0.3 | 4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Customize Stopword suggestion threshold
Decrease Stopword suggestion threshold to return more Stopword suggestions.
<?php | |
// Decrease SearchWP Stopword suggestion threshold to return more Stopword suggestions. | |
add_filter( 'searchwp\stopwords\suggestions\threshold', function( $threshold ) { | |
return 0.2; | |
} ); |