wordpress技巧如何限制评论间隔时间的方法

2024年05月29日 建站教程

wordpress建站中如何限制评论间隔时间的方法,下面web建站小编给大家简单介绍一下!

具体语法如下:

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;
 }
}

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

展开阅读全文
相关内容