bir ara sizin kodunuz ile benzer bir yapıda olan eklenti ile uğraşmıştım belki feyz verir
http://wordpress.org/extend/plugins/simple-count-down/
if ($seconds > 0) {
$days = ceil($seconds / 60 / 60 / 24 );
$string = preg_replace('/%[n|N]/', '<strong>'.$days.'</strong>', htmlentities(get_option('simple-count-down-text-string'), ENT_QUOTES, get_bloginfo('charset')));
$options = get_option("simplecountdown");
$_SESSION['simple_count_down_string'] = $before_widget .
$before_title .
$options['title'] .
$after_title .
'<ul><li id="simple-count-down-li">'. $string .'</li></ul>' .
$after_widget;
} else {
$_SESSION['simple_count_down_string'] = "";
}
}