wp_xmlrpc_server::_convert_date() WordPress Method
The wp_xmlrpc_server::_convert_date() method is used to convert a date string into a timestamp. This is used when creating or updating a post via the XML-RPC interface.
wp_xmlrpc_server::_convert_date( string $date ) #
Convert a WordPress date string to an IXR_Date object.
Parameters
- $date
(string)(Required)Date string to convert.
Return
Source
File: wp-includes/class-wp-xmlrpc-server.php
protected function _convert_date( $date ) { if ( '0000-00-00 00:00:00' === $date ) { return new IXR_Date( '00000000T00:00:00Z' ); } return new IXR_Date( mysql2date( 'Ymd\TH:i:s', $date, false ) ); }
Expand full source codeCollapse full source codeView on TracView on GitHub