Time Zone and Shedule Post
-
Scheduled post I’m driving and I have the following code where you post today’s show:
<?php $today = getdate(); query_posts('showposts=10&&orderby=meta_value&meta_key=horarios&order=ASC&post_status=publish' .'year=' .$today["year"] .'&monthnum=' .$today["mon"] .'&day=' .$today["mday"] ); while (have_posts()) : the_post(); ?>
The problem is incompatibility with the server, as the post which would be published at 00:00 pm are shown much earlier.
My server uses the time zone -6 and I set my time zone WordPress (-3)
Thanks for advanced!
- The topic ‘Time Zone and Shedule Post’ is closed to new replies.