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 |
---|---|
579 | * |
580 | * The default columns include 'domain' and 'path. |
581 | * |
582 | * @since 4.6.0 |
583 | * |
584 | * @param string[] $search_columns Array of column names to be searched. |
585 | * @param string $search Text being searched. |
586 | * @param WP_Site_Query $this The current WP_Site_Query instance. |
587 | */ |
588 | $search_columns = apply_filters( 'site_search_columns', $search_columns, $this->query_vars['search'], $this ); |
589 |
|
590 | $this->sql_clauses['where']['search'] = $this->get_search_sql( $this->query_vars['search'], $search_columns ); |
591 | } |
592 |
|
593 | $date_query = $this->query_vars['date_query']; |
594 | if ( ! empty( $date_query ) && is_array( $date_query ) ) { |
595 | $this->date_query = new WP_Date_Query( $date_query, 'registered' ); |
596 | $this->sql_clauses['where']['date_query'] = preg_replace( '/^\s*AND\s*/', '', $this->date_query->get_sql() ); |
597 | } |