WP_Query::is_time() – Is the query for a specific time?

You appear to be a bot. Output may be restricted

Description

Is the query for a specific time?

Usage

$bool = WP_Query::is_time();

Parameters

Returns

bool Whether the query is for a specific time.

Source

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

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

 View on GitHub View on Trac