WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
2110 | if ( ! $q['suppress_filters'] ) { |
2111 | /** |
2112 | * Filters the search SQL that is used in the WHERE clause of WP_Query. |
2113 | * |
2114 | * @since 3.0.0 |
2115 | * |
2116 | * @param string $search Search SQL for WHERE clause. |
2117 | * @param WP_Query $this The current WP_Query object. |
2118 | */ |
2119 | $search = apply_filters_ref_array( 'posts_search', array( $search, &$this ) ); |
2120 | } |
2121 |
|
2122 | // Taxonomies. |
2123 | if ( ! $this->is_singular ) { |
2124 | $this->parse_tax_query( $q ); |
2125 |
|
2126 | $clauses = $this->tax_query->get_sql( $wpdb->posts, 'ID' ); |
2127 |
|
2128 | $join .= $clauses['join']; |