为了阻止垃圾评论,我们可以进入WP后台 → 设置 → 讨论,在讨论设置面勾选“自动关闭发布 14天后的文章上的评论”,让之前较早发表的文章自动关闭评论。
如果再给读者用户一个什么时候关闭评论的时间提示,是不是更加人性化。
将下面的代码添加到当前主题functions.php文件中:
function topic_closes_in() { global $post; if ($post->comment_status == 'open') { $close_comments_days_old = get_option( 'close_comments_days_old' ); $expires = strtotime( "{$post->post_date_gmt} GMT" ) + $close_comments_days_old * DAY_IN_SECONDS; printf( '提示:本文评论将于%s后自动关闭!', human_time_diff( $expires )); }}
调用函数
<?php topic_closes_in(); ?>
添加到主题评论模板comments.php的适当位置即可。
另外,这个自动关闭评论函数 human_time_diff 保存在 wp-includes/formatting.php文件中。