{ 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 $orderby The ORDER BY clause of the query. @type string $limits The LIMIT clause of the query. @type string $groupby The GROUP BY clause of the query.}
$fieldsstring
The SELECT clause of the query.
$joinstring
The JOIN clause of the query.
$wherestring
The WHERE clause of the query.
$orderbystring
The ORDER BY clause of the query.
$limitsstring
The LIMIT clause of the query.
$groupbystring
The GROUP BY clause of the query.
$queryWP_Site_Query
Current instance of WP_Site_Query (passed by reference).
669* @type string$orderby The ORDERBY clause of the query.670* @type string$limits The LIMIT clause of the query.671* @type string$groupby The GROUPBY clause of the query.672*}673* @param WP_Site_Query$query Current instance of WP_Site_Query(passed by reference).674*/675$clauses=apply_filters_ref_array('sites_clauses',array(compact($pieces),&$this));676677$fields=isset($clauses['fields'])?$clauses['fields']:'';678$join=isset($clauses['join'])?$clauses['join']:'';679$where=isset($clauses['where'])?$clauses['where']:'';680$orderby=isset($clauses['orderby'])?$clauses['orderby']:'';681$limits=isset($clauses['limits'])?$clauses['limits']:'';
History
Introduced in 4.6.0. Unchanged from 6.7.7 through 7.1.0.