is_time()WP 1.5.0

Determines whether the query is for a time-based archive page (page of posts for the specified time). A conditional tag.

It returns true when the request (in the URL) contains the archive time: hour, minute, second.

This function is a part of is_date() check, so in a logical chain is_time() should be used BEFORE is_date().

1 time — 0.00008 sec (very fast) | 50000 times — 0.02 sec (speed of light)

No Hooks.

Return

true|false. Whether the query is for a specific time.

Usage

is_time();

Examples

0

#1 Check if current archive page is archive by time.

if ( is_time() ) {
	// this is time archive page.
}

Notes

  • Global. WP_Query. $wp_query WordPress Query object.

Changelog

Since 1.5.0 Introduced.

is_time() code WP 6.4.3

function is_time() {
	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.' ), '3.1.0' );
		return false;
	}

	return $wp_query->is_time();
}