Topic: News Generator - timestamp on front page posts

Just installed the News Generator and it works perfectly. However, I am trying to edit AP_News_Generator.php so the timestamps are local time, so, for example, "2005-03-09 21:33" would be displayed as "2005-03-09 4:33 EST". I assume there's an easy way to adjust that, but I'm not exactly sure what to add.

Re: News Generator - timestamp on front page posts

that would require knowing where your users are - and what timezone they're viewing your page from.

if this is the front page - then you won't necessarily know this, correct?

have they already logged in?

Re: News Generator - timestamp on front page posts

I want it to show Eastern Standard Time on the front page.

Re: News Generator - timestamp on front page posts

Then you would want to do something like where it takes the unix timestamp of the post, then does something like this:

$est_date = $old_date - $server_time - 5;