Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_search_stopwords

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1504           }
1505
1506           /**
1507            * Filters stopwords used when parsing search terms.
1508            *
1509            * @since 3.7.0
1510            *
1511            * @param string[] $stopwords Array of stopwords.
1512            */
1513           $this->stopwords = apply_filters( 'wp_search_stopwords', $stopwords );
1514           return $this->stopwords;
1515      }
1516
1517      /**
1518       * Generates SQL for the ORDER BY condition based on passed search terms.
1519       *
1520       * @since 3.7.0
1521       *
1522       * @global wpdb $wpdb WordPress database abstraction object.