%s',
esc_html__(
'Content stopwords are a premium feature where you can set stopwords that only apply to the post content. Those stopwords will still be indexed if they appear in post titles, tags, categories, custom fields or other parts of the post. To use content stopwords, you need Relevanssi Premium.',
'relevanssi'
)
);
}
echo '';
/**
* Filters whether the common words list is displayed or not.
*
* The list of 25 most common words is displayed by default, but if the
* index is big, displaying the list can take a long time. This filter can
* be used to turn the list off.
*
* @param boolean If true, show the list; if false, don't show it.
*/
if ( apply_filters( 'relevanssi_display_common_words', true ) ) {
relevanssi_common_words( 25 );
}
}
/**
* Displays a list of stopwords.
*
* Displays the list of stopwords and gives the controls for adding new
* stopwords.
*/
function relevanssi_show_stopwords() {
printf(
'%s
',
esc_html__(
'Enter a word here to add it to the list of stopwords. The word will automatically be removed from the index, so re-indexing is not necessary. You can enter many words at the same time, separate words with commas.',
'relevanssi'
)
);
?>