Summery Summery
Get the update date/time for the item (UTC time)
Syntax Syntax
Parameters Parameters
- $date_format
-
(Optional) Supports any PHP date format from http://php.net/date
Default value: 'j F Y, g:i a'
Return Return
(int|string|null)
Source Source
File: wp-includes/SimplePie/Item.php
/**
* Get the update date/time for the item (UTC time)
*
* @see get_updated_date
* @param string $date_format Supports any PHP date format from {@see http://php.net/date}
* @return int|string|null
*/
public function get_updated_gmdate($date_format = 'j F Y, g:i a')
{
$date = $this->get_updated_date('U');