diff --git a/src/wp-includes/query.php b/src/wp-includes/query.php
index 69055b3930..1cb6a60228 100644
a
|
b
|
function wp_reset_postdata() { |
138 | 138 | /** |
139 | 139 | * Determines whether the query is for an existing archive page. |
140 | 140 | * |
141 | | * Month, Year, Category, Author, Post Type archive... |
| 141 | * An Archive is a {@link https://developer.wordpress.org/reference/functions/is_category/ Category}, {@link https://developer.wordpress.org/reference/functions/is_tag/ Tag}, {@link https://developer.wordpress.org/reference/functions/is_author/ Author}, {@link https://developer.wordpress.org/reference/functions/is_date/ Date}, {@link https://developer.wordpress.org/reference/functions/is_post_type_archive/ Custom Post Type} or {@link https://developer.wordpress.org/reference/functions/is_tax/ Custom Taxonomy} based pages. |
142 | 142 | * |
143 | 143 | * For more information on this and similar theme functions, check out |
144 | 144 | * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ |