{ 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.}
722* @type string$order The ORDER clause of the query.723* @type string$limits The LIMIT clause of the query.724*}725* @param string[]$taxonomies An array of taxonomy names.726* @param array$args An array of term query arguments.727*/728$clauses=apply_filters('terms_clauses',compact($pieces),$taxonomies,$args);729730$fields=$clauses['fields']??'';731$join=$clauses['join']??'';732$where=$clauses['where']??'';733$distinct=$clauses['distinct']??'';734$orderby=$clauses['orderby']??'';
History
Introduced in 3.1.0. Unchanged from 6.7.7 through 7.1.0.