public function get_local_date($date_format = '%c'
) { if (!
$date_format) { return $this->
sanitize($this->
get_date(''
), SIMPLEPIE_CONSTRUCT_TEXT
);
} elseif (($date =
$this->
get_date('U'
)) !== null &&
$date !== false
) { return strftime($date_format,
$date);
} return null;
} /**
* Get the posting date/time for the item (UTC time)
*
* @see get_date
* @param string $date_format Supports any PHP date format from {@see http://php.net/date}
* @return int|string|null
*/