{ 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_Network_Query
Current instance of WP_Network_Query (passed by reference).
464* @type string$orderby The ORDERBY clause of the query.465* @type string$limits The LIMIT clause of the query.466* @type string$groupby The GROUPBY clause of the query.467*}468* @param WP_Network_Query$query Current instance of WP_Network_Query(passed by reference).469*/470$clauses=apply_filters_ref_array('networks_clauses',array(compact($pieces),&$this));471472$fields=$clauses['fields']??'';473$join=$clauses['join']??'';474$where=$clauses['where']??'';475$orderby=$clauses['orderby']??'';476$limits=$clauses['limits']??'';
History
Introduced in 4.6.0. Unchanged from 6.7.7 through 7.1.0.