How to convert a GMT/UTC timestamp to local time in WordPress
WordPress goes to great lengths in order to provide us with a localized environment, displaying dates and times in the correct format and even language. However, since it uses its own timezone setting, some native PHP functions are no longer applicable (or don’t return correct results), such as the date() function which returns a date/time string depending on the timezone configuration of PHP itself, ignoring the WordPress setting.
Recently, I retrieved from a third-party API a timestamp, which I needed to convert to a WordPress-correct timestamp. WordPress already provides a great function, date_i18n() (i18n stands for internationalization, as there are 18 letters between the beginning i and the ending n), which seemingly supports GMT/UTC timestamps, but once I tried it I quickly realized its $gmt parameter only applies if you don’t provide your own timestamp.
There is however, a little known function called get_gmt_from_date() which almost does what I needed, but not quite. The problem is that it won’t accept a timestamp, but a string in the format Y-m-d H:i:s (e.g. 2018-03-19 23:59:59). No problem! Let’s create our own little function that will wrap get_gmt_from_date() returning exactly what we need.
First, we convert our GMT timestamp to the format required. get_date_from_gmt() supports a seconds parameter, which is the format with which to return the result. We can pass “U” as the return format which, according to the documentation is the timestamp. What we get, is the localized timestamp, suitable to be used with all WordPress-provided date/time functions.
We can simplify our function to a one-liner by eliminating the variables:
That’s it! You can now use the local timestamp with date_i18n() or any other WordPress date/time function you want. You can even skip creating the whole function and just type its one line of code every time you need it; it’s not that complicated. But I do tend to forget, so a well named function always helps :)
PHP timestamps vs WordPress timestamps
Note that timestamps used by WordPress are generated by WordPress-provided current_time() and are usually localized.
In contrast, PHP’s functions date(), gmdate() and others, always handle the timestamp format “U” as GMT/UTC. This can be observed by running:
Notice how the timestamps (the first number in each line) are the same, but the actual date/time is different. Always check the source and correctness of your timestamps when working with WordPress.
Troubleshooting
If the function returns the same timestamp as the one you provided, make sure you have actually selected a correct timezone from Settings → General → Timezone. Note that the timestamp returned may still be the same as the GMT/UTC timestamp you passed, if the timezone selected is UTC, UTC+0, or a location that is close to UTC time and observes DST at some point. (e.g. Europe/London in winter and Atlantic/Azores in the summer).
4 responses to “How to convert a GMT/UTC timestamp to local time in WordPress”
Thank you for the explanation Anastis.
What if I have an specific date on display like 19:00 and I want it to show in visitor’s time zone? What’s the best way to do it?
Thank you verymuch!
This is better achieved via JavaScript, as the visitor’s browser already knows the correct timezone, and you avoid the need for cookies and round-trips.
You can use or get inspiration from plugins that do just that:
Localize Time
Local Time
Using the “U” option with get_date_from_gmt does not just give you a timestamp, it gives you the seconds from unix epoch which is based in GMT. So you are losing the timezone offset you wanted to get. Try strtotime instead of “U”, this worked for me:
get_date_from_gmt( $start_date, ‘U’ ); // Returns a timestamp in UTC+0 timezone
strtotime( get_date_from_gmt( $start_date ) ); // Returns local time WP time
Hey Radley!
Thanks for clearing things up for our readers!
Some comments however: