Hello everyone,
I am attempting to bring together some of the many solutions offered up by others within this forum, for making posts dated with future time stamps viewable within worpress. In addition to this, I am hoping that someone with more php and wordpress knowledge than I, will be able to help me get out of the rut that I am in with regards to this whole issue. As background, I am running WordPress 2.0.4 with no active plugins. My code is largely taken from the default theme, although I have created my own css stylesheet and xhtml templates for layout purposes. I am using the default permalink structure for WP 2.0.4
Solution #1:
Alex Tingle's EventCalendar. This is a great plugin and I have used it for other versions of my site, which is an online syllabus. It can be downloaded here - http://blog.firetree.net/2006/01/31/eventcalendar-303 The problem I have encountered with EC3 is its limitation to a single event category. If you need to see future dated posts across multiple categories, EC3 will be unable to accomodate. (I would love to hear if others have found this untrue.)
Solution #2:
Edit Classes.php (This solution was posted here - http://wordpress.org/support/topic/66269?replies=8 by CedU)
Find this code in the file classes.php.
if ($pagenow != 'post.php' && $pagenow != 'edit.php' && !($this->is_single && $user_ID)) {
$where .= " AND post_date_gmt <= '$now'";
Comment out this line from the above code.
// $where .= " AND post_date_gmt <= '$now'";