WP_Query::is_month
Determines whether the query is for an existing month archive.
Метод класса: WP_Query{}
Хуков нет.
Возвращает
true|false. Whether the query is for an existing month archive.
Использование
global $wp_query; $wp_query->is_month();
Список изменений
| С версии 3.1.0 | Введена. |
Код WP_Query::is_month() WP Query::is month WP 7.0
public function is_month() {
return (bool) $this->is_month;
}