Changeset 51299 for trunk/src/wp-includes/class-wp-query.php
- Timestamp:
- 07/01/2021 09:09:04 PM (4 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-query.php (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-query.php
r51285 r51299 19 19 20 20 /** 21 * Query vars set by the user 21 * Query vars set by the user. 22 22 * 23 23 * @since 1.5.0 … … 27 27 28 28 /** 29 * Query vars, after parsing 29 * Query vars, after parsing. 30 30 * 31 31 * @since 1.5.0 … … 35 35 36 36 /** 37 * Taxonomy query, as passed to get_tax_sql() 37 * Taxonomy query, as passed to get_tax_sql(). 38 38 * 39 39 * @since 3.1.0 … … 43 43 44 44 /** 45 * Metadata query container 45 * Metadata query container. 46 46 * 47 47 * @since 3.2.0 … … 51 51 52 52 /** 53 * Date query container 53 * Date query container. 54 54 * 55 55 * @since 3.7.0 … … 93 93 94 94 /** 95 * The amountof posts for the current query.95 * The number of posts for the current query. 96 96 * 97 97 * @since 1.5.0 … … 136 136 137 137 /** 138 * The amountof comments for the posts.138 * The number of comments for the posts. 139 139 * 140 140 * @since 2.2.0 … … 160 160 161 161 /** 162 * The amountof found posts for the current query.162 * The number of found posts for the current query. 163 163 * 164 164 * If limit clause was not used, equals $post_count. … … 170 170 171 171 /** 172 * The amountof pages.172 * The number of pages. 173 173 * 174 174 * @since 2.1.0 … … 178 178 179 179 /** 180 * The amountof comment pages.180 * The number of comment pages. 181 181 * 182 182 * @since 2.7.0
Note: See TracChangeset
for help on using the changeset viewer.