relevanssi_display_common_words

apply_filters( 'relevanssi_display_common_words', boolean $display )

Controls whether the “25 most common words” list is shown on the Stopwords tab.

Parameters

$display
(boolean) If true, display the list. Default true.

More information

The “25 most common words” list on the Stopwords page is helpful for adding stopwords, but it’s also quite heavy thing to do if your index is large. If opening the Stopwords page takes a very long time, you can use this filter hook to disable the “25 most common words” list:

add_filter( 'relevanssi_display_common_words', '__return_false' );