WP_REST_Revisions_Controller::prepare_date_response() protected WP 4.7.0
Checks the post_date_gmt or modified_gmt and prepare any post or modified date for single post output.
{} It's a method of the class: WP_REST_Revisions_Controller{}
No Hooks.
Return
String/null. ISO8601/RFC3339 formatted datetime, otherwise null.
Usage
// protected - for code of main (parent) or child class $result = $this->prepare_date_response( $date_gmt, $date );
- $date_gmt(string) (required)
- GMT publication time.
- $date(string/null)
- Local publication time.
Default: null
Changelog
Since 4.7.0 | Introduced. |
Code of WP_REST_Revisions_Controller::prepare_date_response() WP REST Revisions Controller::prepare date response WP 5.6
protected function prepare_date_response( $date_gmt, $date = null ) {
if ( '0000-00-00 00:00:00' === $date_gmt ) {
return null;
}
if ( isset( $date ) ) {
return mysql_to_rfc3339( $date );
}
return mysql_to_rfc3339( $date_gmt );
}