wordpres有时总免不了有一些垃圾评论,有的甚至在短时间里发大量垃圾评论,这很让人烦,网上查了下资料,说可以调整评论的间隔时间来阻拦一下,至于效果来说,有总比没有好吧。
将下面的代码加到主题的functions.php就可以了:
add_filter('comment_flood_filter', 'psay_comment_flood_filter', 10, 3);
function psay_comment_flood_filter($flood_control, $time_last, $time_new){
$seconds = 600;
if(($time_new - $time_last) < $seconds){
return true;
}
else{
return false;
}
}