is_time()
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().
Uses: WP_Query::is_time()
1 time — 0.00008 sec (very fast) | 50000 times — 0.02 sec (speed of light)
No Hooks.
Returns
true|false. Whether the query is for a specific time.
Usage
is_time();
Examples
#1 Check if current archive page is archive by time.
if ( is_time() ) {
// this is time archive page.
}
Notes
- Global. WP_Query.
$wp_queryWordPress Query object.
Changelog
| Since 1.5.0 | Introduced. |
is_time() is time code WP 6.9.1
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();
}