Ticket #37621: 37621.2.diff
File 37621.2.diff, 3.1 KB (added by , 8 years ago) |
---|
-
src/wp-includes/class-wp-comment-query.php
182 182 * @type array $meta_query Meta query clauses to limit retrieved comments by. 183 183 * See WP_Meta_Query. Default empty. 184 184 * @type int $number Maximum number of comments to retrieve. 185 * Default null(no limit).185 * Default empty (no limit). 186 186 * @type int $offset Number of comments to offset the query. Used to build 187 187 * LIMIT clause. Default 0. 188 188 * @type bool $no_found_rows Whether to disable the `SQL_CALC_FOUND_ROWS` query. -
src/wp-includes/class-wp-network-query.php
103 103 * Default false. 104 104 * @type string $fields Network fields to return. Accepts 'ids' (returns an array of network IDs) 105 105 * or empty (returns an array of complete network objects). Default empty. 106 * @type int $number Maximum number of networks to retrieve. Default null(no limit).106 * @type int $number Maximum number of networks to retrieve. Default empty (no limit). 107 107 * @type int $offset Number of networks to offset the query. Used to build LIMIT clause. 108 108 * Default 0. 109 109 * @type bool $no_found_rows Whether to disable the `SQL_CALC_FOUND_ROWS` query. Default true. -
src/wp-includes/class-wp-site-query.php
113 113 * @type string $fields Site fields to return. Accepts 'ids' (returns an array of site IDs) 114 114 * or empty (returns an array of complete site objects). Default empty. 115 115 * @type int $ID A site ID to only return that site. Default empty. 116 * @type int $number Maximum number of sites to retrieve. Default null (no limit).116 * @type int $number Maximum number of sites to retrieve. Default 100. 117 117 * @type int $offset Number of sites to offset the query. Used to build LIMIT clause. 118 118 * Default 0. 119 119 * @type bool $no_found_rows Whether to disable the `SQL_CALC_FOUND_ROWS` query. Default true.