Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_terms_fields

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
671            *
672            * Use of this filter can result in unpredictable behavior, and is not recommended.
673            *
674            * @since 2.8.0
675            *
676            * @param string[] $selects    An array of fields to select for the terms query.
677            * @param array    $args       An array of term query arguments.
678            * @param string[] $taxonomies An array of taxonomy names.
679            */
680           $fields = implode( ', ', apply_filters( 'get_terms_fields', $selects, $args, $taxonomies ) );
681
682           $join .= " INNER JOIN $wpdb->term_taxonomy AS tt ON t.term_id = tt.term_id";
683
684           if ( ! empty( $this->query_vars['object_ids'] ) ) {
685                $join .= " INNER JOIN {$wpdb->term_relationships} AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id";
686           }
687
688           $where = implode( ' AND ', $this->sql_clauses['where'] );
689