Delayed commenting

时间:2011-07-05 作者:Sean

我们有一个客户正在使用WP作为备用现实游戏的一部分,作为其中的一部分,他们希望“角色”在特定时间在帖子上留下评论。他们基本上希望能够提前对评论进行排队,以便在正确的时间发表评论(类似于您如何控制帖子在特定时间上线)

有没有处理这个问题的插件?

1 个回复
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

结束

相关推荐

How to prevent spam comments?

我已经安装了NoSpamMX插件。我很长时间没有收到垃圾评论了。但现在我收到了很多垃圾评论,尤其是在一篇帖子中。为什么只有那个帖子才会有这么多垃圾邮件?