Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: posts_search

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
2181           if ( ! $q['suppress_filters'] ) {
2182                /**
2183                 * Filters the search SQL that is used in the WHERE clause of WP_Query.
2184                 *
2185                 * @since 3.0.0
2186                 *
2187                 * @param string   $search Search SQL for WHERE clause.
2188                 * @param WP_Query $query  The current WP_Query object.
2189                 */
2190                $search = apply_filters_ref_array( 'posts_search', array( $search, &$this ) );
2191           }
2192
2193           // Taxonomies.
2194           if ( ! $this->is_singular ) {
2195                $this->parse_tax_query( $q );
2196
2197                $clauses = $this->tax_query->get_sql( $wpdb->posts, 'ID' );
2198
2199                $join  .= $clauses['join'];