Should timestamps always use UTC?
问题 Should timestamps always use UTC (as in 2012-06-14T10:32:11+00:00 ) and not local time (as in 2012-06-14T06:32:11-04:00 for New York)? References Although not a WordPress question, I believe it'll be a strong example -- the WordPress core, themes and plugins developed by the core developers, if outputting timestamp somewhere, always seem to use something like get_the_date('c'); or get_the_modified_date('c'); -- which always output timestamp in UTC, as in 2012-06-14T10:32:11 +00:00 . I just