SO网友:Brooke.
                我知道没有插件。我们在谈论多少评论?我假设很多人会手动批准。
我能想到的一个简单解决方案是在注释中的注释循环中添加类似的内容。php。找到foreach循环并将其替换为
<?php 
//set the date one day into the future
$date = strtotime(date("Y-m-d", strtotime($date)) . " +1 day");
foreach($comments as $comment) :
    if($date > comments->comment_date ){
            <?php comment_text(); ?>  
            <cite><?php comment_type(); ?> by <?php comment_author_link(); ?> on <?php comment_date(); ?> at <?php comment_time(); ?></cite>  }
endforeach;
?>
 这是一个未经测试的示例。您应该能够设置
$date 无论你想要什么,甚至使用随机时间。
资源:
get_comments()
Unraveling the Secrets of WordPress\' Comments.php File
PHP Date add 1 hour