1 alex_poon Sep 19, 2009 07:38
3 alex_poon Sep 19, 2009 08:16
So, Is there any idea to view the post without waiting until december? Which means, I want the post to be viewed although it is being set of the date given.
4 yabba Sep 19, 2009 08:26
You need to set $timestampmax to a future date in either your index.php or your stub file
// A blog has been requested... Let's set a few default params:
# You could *force* a specific skin here with this setting:
# $skin = 'basic';
# This setting retricts posts to those published, thus hiding drafts.
# You should not have to change this.
$show_statuses = array();
# Here you can set a limit before which posts will be ignored
# You can use a unix timestamp value or 'now' which will hide all posts in the past
$timestamp_min = '';
# Here you can set a limit after which posts will be ignored
# You can use a unix timestamp value or 'now' which will hide all posts in the future
$timestamp_max = 'now';
# Additionnaly, you can set other values (see URL params in the manual)...
# $order = 'ASC'; // This for example would display the blog in chronological order...
// That's it, now let b2evolution do the rest! :)
require $inc_path.'_blog_main.inc.php';
?>
¥
Type your post -> change the date -> wander over to the right side of the screen and change the setting from "draft" to "published", then click the "save" button ( not "publish now" ), sit back and wait until december
¥