为这些帖子创建一个名为expires
该值是禁用帖子的日期。在主题的循环中使用以下代码。
//Loop-Start
if (have_posts()) : while (have_posts()) : the_post();
$exTime = get_post_custom_values(\'expires\');
if (is_array($exTime)) {
$exString= implode($exTime);
$seconds = strtotime($exString) - time();
} else {
$secondes = 1;
}
if ($seconds > 0) {
echo "<h2>";
the_title();
echo "</h2>";
the_content();
}
endwhile;
endif;
此代码不会删除或起草帖子。但你在前面看不到它。也许这是你问题的可能解决方案?