WP_Query::is_archive
Determines whether the query is for an existing archive page.
Archive pages include category, tag, author, date, custom post type, and custom taxonomy based archives.
Method of the class: WP_Query{}
No Hooks.
Returns
bool. Whether the query is for an existing archive page.
Usage
global $wp_query; $wp_query->is_archive();
Notes
| See: WP_Query::is_category() |
| See: WP_Query::is_tag() |
| See: WP_Query::is_author() |
| See: WP_Query::is_date() |
| See: WP_Query::is_post_type_archive() |
| See: WP_Query::is_tax() |
Changelog
| Since 3.1.0 | Introduced. |
WP_Query::is_archive() WP Query::is archive code WP 7.1.2
public function is_archive() {
return (bool) $this->is_archive;
}