{ 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_Comment_Query
Current instance of WP_Comment_Query (passed by reference).
944* @type string$orderby The ORDERBY clause of the query.945* @type string$limits The LIMIT clause of the query.946* @type string$groupby The GROUPBY clause of the query.947*}948* @param WP_Comment_Query$query Current instance of WP_Comment_Query(passed by reference).949*/950$clauses=apply_filters_ref_array('comments_clauses',array(compact($pieces),&$this));951952$fields=$clauses['fields']??'';953$join=$clauses['join']??'';954$where=$clauses['where']??'';955$orderby=$clauses['orderby']??'';956$limits=$clauses['limits']??'';
History
Introduced in 3.1.0. Unchanged from 6.7.7 through 7.1.0.