Available since: 3.0
searchwp_stopwords_suggestions_threshold
View Parameters »When retrieving stopword suggestions SearchWP will scan your entire index to find terms that appear consistently across your entire website. To do this, SearchWP implements a threshold of overall entries a word appears in before it is considered a stopword suggestion. You can control that threshold using this hook:
This file contains 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 | |
// Tell SearchWP to suggest stopwords only if they appear in 50% of entries. | |
add_filter( 'searchwp_stopwords_suggestions_threshold', function( $threshold ) { | |
return 0.5; | |
} ); |
Parameters
Parameter | Type | Description |
---|---|---|
$threshold |
Float |
Percentage (between 0 and 1) of entries a word must appear in before it is considered a stopword suggestion. Default is |