在设定的时间内,除了对当前文章生效,对其他文章同样生效,需过了设定时间才可继续评论
各种垃圾评论让我们防不胜防,但我们可以通过合理的设计各种限制,在一定情况下缓解。这一次分享的就是限制用户评论太快的代码。
在设定的时间内,除了对当前文章生效,对其他文章同样生效,需过了设定时间才可继续评论。
在主题根目录下的functions.php
文件中的<?php
下添加以下代码并保存。
//评论间隔 add_filter('comment_flood_filter', 'suren_comment_flood_filter', 10, 3); function suren_comment_flood_filter($flood_control, $time_last, $time_new) { $seconds = 60;//间隔时间 if(($time_new - $time_last) < $seconds) { $time=$seconds-($time_new - $time_last); wp_die ('评论过快!请'. $time.'秒后再次评论'); } else { return false; } }
© 版权声明
THE END
暂无评论内容