wp_xmlrpc_server::_convert_date_gmt() WordPress Method
The wp_xmlrpc_server::_convert_date_gmt() method is used to convert a date string from GMT to the local timezone. This is useful for dates that are displayed in the WordPress admin interface, which are displayed in GMT by default.
wp_xmlrpc_server::_convert_date_gmt( string $date_gmt, string $date ) #
Convert a WordPress GMT date string to an IXR_Date object.
Parameters
- $date_gmt
(string)(Required)WordPress GMT date string.
- $date
(string)(Required)Date string.
Return
Source
File: wp-includes/class-wp-xmlrpc-server.php
protected function _convert_date_gmt( $date_gmt, $date ) { if ( '0000-00-00 00:00:00' !== $date && '0000-00-00 00:00:00' === $date_gmt ) { return new IXR_Date( get_gmt_from_date( mysql2date( 'Y-m-d H:i:s', $date, false ), 'Ymd\TH:i:s' ) ); } return $this->_convert_date( $date_gmt ); }
Expand full source codeCollapse full source codeView on TracView on GitHub