这个想法最初来自于hostloc
,也就是discuz
论坛的功能,设置这个干啥呢?但是随着后面发现部分用户太过活跃,另外还可能出现被人恶意刷一堆垃圾评论。权衡再三,准备设置网站评论时间间隔。今天就给大家分享一下“WordPress
网站设置评论时间限制-以7B2
主题为例”的纯代码实现方法。
评论时间限制设置方法-以7B2主题为例
在主题文件function.php底部加上以下代码即可
//WordPress设置评论时间间隔-www.xiaohulizyw.cn
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)
评论时间限制设置方法-通用主题
//评论间隔-www.xiaohulizyw.cn
add_filter('comment_flood_filter', 'suren_comment_flood_filter', 10, 3);
function suren_comment_flood_filter($flood_control, $time_last, $time_new)
{
$seconds = 30;//间隔时间
if(($time_new - $time_last) $seconds)
{
$time=$seconds-($time_new - $time_last);
err ('评论过快!请'. $time.'秒后再次评论');
}
else
{
return false;
}
}
这里的单位是秒,默认30秒只能评论一次