WP_Query::is_time()publicWP 3.1.0

Determines whether the query is for a specific time.

Method of the class: WP_Query{}

No Hooks.

Return

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

Usage

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

Changelog

Since 3.1.0 Introduced.

WP_Query::is_time() code WP 6.5.2

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