Make WordPress Core


Ignore:
Timestamp:
04/28/2022 09:44:12 AM (3 years ago)
Author:
johnbillion
Message:

Docs: Various docblock improvements.

See #54729

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-term-query.php

    r53280 r53299  
    700700         * @since 3.1.0
    701701         *
    702          * @param string[] $clauses    Array of query SQL clauses.
     702         * @param string[] $clauses {
     703         *     Associative array of the clauses for the query.
     704         *
     705         *     @type string $fields   The SELECT clause of the query.
     706         *     @type string $join     The JOIN clause of the query.
     707         *     @type string $where    The WHERE clause of the query.
     708         *     @type string $distinct The DISTINCT clause of the query.
     709         *     @type string $orderby  The ORDER BY clause of the query.
     710         *     @type string $order    The ORDER clause of the query.
     711         *     @type string $limits   The LIMIT clause of the query.
     712         * }
    703713         * @param string[] $taxonomies An array of taxonomy names.
    704714         * @param array    $args       An array of term query arguments.
Note: See TracChangeset for help on using the changeset viewer.