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