Publish Post At a Future Date & Time

Is there an easy way to do this currently? I tried setting the "Date Added" for the post to a time in the future to see if that would cause it to be unpublished now and published at that time, but it doesn't seem to work.

Is there a way to do this that I'm missing?

Comments

  • edited 6:14PM
    There isn't a way at the moment but we do have that slated for the next release. Until that is done you can try adding the following code in the fuel/modules/blog/libraries/Fuel_blog.php file in the _publish_status method around line 1040:
    if ($t == 'blog_posts') { $where[$tables[$t].'.post_date <= '] = datetime_now(); }
  • edited 6:14PM
    Works great, just had to change ".post_date" to ".date_added".

    Thank you very much.
Sign In or Register to comment.