wp_search_stopwords
Filters stopwords used when parsing search terms.
Использование
add_filter( 'wp_search_stopwords', 'wp_kama_search_stopwords_filter' ); /** * Function for `wp_search_stopwords` filter-hook. * * @param string[] $stopwords Array of stopwords. * * @return string[] */ function wp_kama_search_stopwords_filter( $stopwords ){ // filter... return $stopwords; }
- $stopwords(string[])
- Array of stopwords.
Список изменений
С версии 3.7.0 | Введена. |
Где вызывается хук
wp_search_stopwords
wp-includes/class-wp-query.php 1586
$this->stopwords = apply_filters( 'wp_search_stopwords', $stopwords );