Uses
Uses | Description |
---|---|
wp-includes/functions.php: wp_timezone() | Retrieves the timezone from site settings as a |
Given a date in UTC or GMT timezone, returns that date in the timezone of the site.
Requires and returns a date in the Y-m-d H:i:s format. Return format can be overridden using the $format parameter.
(string) (Required) The date to be converted, in UTC or GMT timezone.
(string) (Optional) The format string for the returned date.
Default value: 'Y-m-d H:i:s'
(string) Formatted version of the date, in the site's timezone.
File: wp-includes/formatting.php
function get_date_from_gmt( $string, $format = 'Y-m-d H:i:s' ) { $datetime = date_create( $string, new DateTimeZone( 'UTC' ) ); if ( false === $datetime ) { return gmdate( $format, 0 ); } return $datetime->setTimezone( wp_timezone() )->format( $format ); }
Version | Description |
---|---|
1.2.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_date_from_gmt