I have the time for my website to UTC-6, my location. The time stamp on the meta for articles is OK, bu on the “must read articles” it continues with UTC 0. Example, if my time and date is now, March 11, 7:53pm, the date on the “Must read articles” will show March 12 and not March 1
My website http://www.todaycostarica.com
2 Answers
Hello Enrico !
Thanks for your feedback. We are checking and fix this issue, will let you know when we are done.
Hi Enrico,
To resolve this issue please follow my instruction here:
– Open functions.php file in your site / wp-content / themes / your theme / functions.php
– Replace following code – line 894
<div class="entry-meta"><?php echo date( get_option( 'date_format' ) ); ?></div>
with:
<div class="entry-meta"><?php echo date_i18n( get_option( 'date_format' ) ); ?></div>
Hope this helps !
Please login or Register to submit your answer