Changeset 48406
- Timestamp:
- 07/08/2020 11:09:08 AM (7 months ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-query.php
r48328 r48406 3320 3320 * @since 1.5.0 3321 3321 * 3322 * @return bool True if posts are available, false if end of loop.3322 * @return bool True if posts are available, false if end of the loop. 3323 3323 */ 3324 3324 public function have_posts() { … … 3406 3406 * @since 2.2.0 3407 3407 * 3408 * @return bool True , if more comments. False, if no more posts.3408 * @return bool True if comments are available, false if no more comments. 3409 3409 */ 3410 3410 public function have_comments() { -
trunk/src/wp-includes/query.php
r48100 r48406 922 922 * @global WP_Query $wp_query WordPress Query object. 923 923 * 924 * @return bool 924 * @return bool True if posts are available, false if end of the loop. 925 925 */ 926 926 function have_posts() { … … 982 982 * @global WP_Query $wp_query WordPress Query object. 983 983 * 984 * @return bool 984 * @return bool True if comments are available, false if no more comments. 985 985 */ 986 986 function have_comments() {
Note: See TracChangeset
for help on using the changeset viewer.