WP_Query::is_date() public WP 3.1.0
Is the query for an existing date archive?
{} It's a method of the class: WP_Query{}
No Hooks.
Return
true/false. Whether the query is for an existing date archive.
Usage
global $wp_query; $wp_query->is_date();
Changelog
Since 3.1.0 | Introduced. |
Code of WP_Query::is_date() WP Query::is date WP 5.6
public function is_date() {
return (bool) $this->is_date;
}