• Resolved slnewkirk

    (@slnewkirk)


    Hello,
    I have changed the time offset in WordPress to -8 (Pacific Time), and the numbers reflect the propper time. But my postings add ‘EST’ after the time. I do not see any option to change that, and I do not see ‘EST’ hard coded in the templets. How do I get this to change to Pacific time, or drop the EST part of the listing?

    Thanks,
    Scott Newkirk
    university.if4.us

Viewing 2 replies - 1 through 2 (of 2 total)
  • Can you check the use of the_time() in your templates and see what format string it’s using? I suspect it’ll be:

    the_time('g:i A T');

    The T here in the format string would be the cause, as it displays the machine’s timezone setting. Remove that part. Or clear it all out so you only have:

    the_time();

    and just let it take the time setting under Options > General, Date and Time.

    Thread Starter slnewkirk

    (@slnewkirk)

    That was quick! And it solved the problem.

    Thank You,
    Scott Newkirk

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘WordPress Time – EST’ is closed to new replies.