wordpress如何限制评论时间(防止恶意评论)

2024年10月10日 建站教程

wordpress建站如何限制评论时间,规则60s之内只允许评论一次,防止恶意评论?下面web建站小编给大家简单介绍一下具体实现代码!

在functions.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);
    err ('评论过快!请'. $time.'秒后再次评论');
  }
  else
  {
    return false;
  }
}

本文链接:http://so.lmcjl.com/news/15080/

展开阅读全文
上一篇:大爱仙尊是什么梗 下一篇:sqlite工具