WP_Query::is_date() – Is the query for an existing date archive?

You appear to be a bot. Output may be restricted

Description

Is the query for an existing date archive?

Usage

$bool = WP_Query::is_date();

Parameters

Returns

bool Whether the query is for an existing date archive.

Source

File name: wordpress/wp-includes/class-wp-query.php
Lines:

1 to 3 of 3
  public function is_date() {
    return (bool) $this->WP_Query::is_date;
  }
 

 View on GitHub View on Trac