is_post_type_archive( string|array $post_types = '' )

Is the query for an existing post type archive page?


Parameters

$post_types

(string|array) (Optional) Post type or array of posts types to check against.

Default value: ''


Return

(bool)


Source

File: wp-includes/query.php

function is_post_type_archive( $post_types = '' ) {
	global $wp_query;

	if ( ! isset( $wp_query ) ) {
		_doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), 'WP-3.1.0' );
		return false;
	}

	return $wp_query->is_post_type_archive( $post_types );
}


Changelog

Changelog
Version Description
WP-3.1.0 Introduced.