Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: terms_clauses

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
715            *     @type string $where    The WHERE clause of the query.
716            *     @type string $distinct The DISTINCT clause of the query.
717            *     @type string $orderby  The ORDER BY clause of the query.
718            *     @type string $order    The ORDER clause of the query.
719            *     @type string $limits   The LIMIT clause of the query.
720            * }
721            * @param string[] $taxonomies An array of taxonomy names.
722            * @param array    $args       An array of term query arguments.
723            */
724           $clauses = apply_filters( 'terms_clauses', compact( $clauses ), $taxonomies, $args );
725
726           $fields   = isset( $clauses['fields'] ) ? $clauses['fields'] : '';
727           $join     = isset( $clauses['join'] ) ? $clauses['join'] : '';
728           $where    = isset( $clauses['where'] ) ? $clauses['where'] : '';
729           $distinct = isset( $clauses['distinct'] ) ? $clauses['distinct'] : '';
730           $orderby  = isset( $clauses['orderby'] ) ? $clauses['orderby'] : '';
731           $order    = isset( $clauses['order'] ) ? $clauses['order'] : '';
732           $limits   = isset( $clauses['limits'] ) ? $clauses['limits'] : '';
733