Standardize the timezone list
-
Standardize the timezone list in the WordPress settings.
A non standard list of time-zones can be problematic when you need to set a time-zone in an area you don’t live in. Trying to find that one city in that list is near impossible.
Just to clarify what some people may find confusing: These timezones are not commonly used by people in real life. They come from the tz/olson database which includes many, many more timezones than people typically use in normal life. You aren’t going to find a timezone like PST or EST because those shorthands encompass several “actual” timezones which just happen to usually have the same UTC offset.
— from the php manual
From this we already know that the list isn’t a standard one. Just go into a windows os timezone settings and you’ll see something that is more standard and something that most people will understand, especially where there is a UTC offset next to the city.
I know the time-zones in PHP work to calculate time. I don’t see any reason not to calculate the UTC offset for each zone and place it next to the corresponding city. If you wanted to take it a step further, you could create a standard list and then link those cities in the standard list with the PHP ones.
- The topic ‘Standardize the timezone list’ is closed to new replies.