{ Associative array of the clauses for the query. @type string $fields The SELECT clause of the query. @type string $join The JOIN clause of the query. @type string $where The WHERE clause of the query. @type string $distinct The DISTINCT clause of the query. @type string $orderby The ORDER BY clause of the query. @type string $order The ORDER clause of the query. @type string $limits The LIMIT clause of the query.}
725* @type string$order The ORDER clause of the query.726* @type string$limits The LIMIT clause of the query.727*}728* @param string[]$taxonomies An array of taxonomy names.729* @param array$args An array of term query arguments.730*/731$clauses=apply_filters('terms_clauses',compact($pieces),$taxonomies,$args);732733$fields=isset($clauses['fields'])?$clauses['fields']:'';734$join=isset($clauses['join'])?$clauses['join']:'';735$where=isset($clauses['where'])?$clauses['where']:'';736$distinct=isset($clauses['distinct'])?$clauses['distinct']:'';737$orderby=isset($clauses['orderby'])?$clauses['orderby']:'';
History
Introduced in 3.1.0. Unchanged from 6.7.7 through 7.1.0.