Show future posts in Wordpress 2.3+
To enable Wordpress to show and publish future posts...BEFORE creating future posts (or if you have already created posts - reedit the timestamp in Admin > Manage > Posts). In the file /wp-includes/post.php look for the section:if ( 'publish' == $post_status ) {  $now = gmdate('Y-m-d H:i:59');  if ( mysql2date('U', $post_date_gmt) > mysql2date('U', $now) ) $post_status = 'future'; }change this to:if ( 'publish' == $post_status ) {  $now = gmdate('Y-m-d H:i:59');  if ( mysql2date('U', $post_date_gmt) > mysql2date('U', $now) ) //hack to show future posts $post_status = 'publish'; }That worked for me on Wordpress...Read More »


