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
2193
2194                if ( !empty($search) ) {
2195                     $search = " AND ({$search}) ";
2196                     if ( !is_user_logged_in() )
2197                          $search .= " AND ($wpdb->posts.post_password = '') ";
2198                }
2199           }
2200
2201           // Allow plugins to contextually add/remove/modify the search section of the database query
2202           $search = apply_filters_ref_array('posts_search', array( $search, &$this ) );
2203
2204           // Taxonomies
2205           if ( !$this->is_singular ) {
2206                $this->parse_tax_query( $q );
2207
2208                $clauses = $this->tax_query->get_sql( $wpdb->posts, 'ID' );
2209
2210                $join .= $clauses['join'];
2211                $where .= $clauses['where'];