wordpress建站中如何限制评论间隔时间的方法,下面小编给大家简单介绍一下!
具体语法如下:
add_filter('comment_flood_filter', 'ipkd_comment_flood_filter', 10, 3);
function ipkd_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;
}
}