mtv\wp\models\Post::the_time PHP Method

the_time() public method

public the_time ( $format = null )
    public function the_time($format = null)
    {
        if ($format) {
            return mysql2date($format, $this->post_date);
        } else {
            return mysql2date(get_option('time_format'), $this->post_date);
        }
    }