WP_Query::is_archive()publicWP 3.1.0

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.

Return

true|false. Whether the query is for an existing archive page.

Usage

global $wp_query;
$wp_query->is_archive();

Notes

Changelog

Since 3.1.0 Introduced.

WP_Query::is_archive() code WP 6.5.2

public function is_archive() {
	return (bool) $this->is_archive;
}