wordpress的评论这块,有人忧愁有人喜,忧愁的是频繁的广告好闹心,喜的各种限制操作已经让评论很安静,比如模板下载吧,哈哈,前几天墨手说奶子的站存在评论XSS漏洞。。。我急忙的说,来试试我的呢,他尽然告诉我,“不行,你的限制太多了”,那么是什么黑科技让评论如何的安心呢?请进《wordpress垃圾评论的新战术》,但是,今天说的,是wordpress评论字数限制,从而更加严格的规范了评论者的行为!
那么直接上今天的黑科技吧,将下列代码插入到主题的functions.php内,
wordpress默认评论方式:
- function set_comments_length($commentdata) {
- $minCommentlength = 3;
- $maxCommentlength = 1000;
- $pointCommentlength = mb_strlen($commentdata['comment_content'],'UTF8');
- if ($pointCommentlength < $minCommentlength){
- header("Content-type: text/html; charset=utf-8");
- wp_die('抱歉,您的評論字數過少,請至少輸入' . $minCommentlength .'個字(目前字數:'. $pointCommentlength .'個字)');
- exit;
- }
- if ($pointCommentlength > $maxCommentlength){
- header("Content-type: text/html; charset=utf-8");
- wp_die('對不起,您的評論字數過多,請少於' . $maxCommentlength .'個字(目前字數:'. $pointCommentlength .'個字)');
- exit;
- }
- return $commentdata;
- }
- add_filter('preprocess_comment', 'set_comments_length');
Ajax评论方式:
- function set_comments_length($commentdata) {
- $minCommentlength = 3;
- $maxCommentlength = 1000;
- $pointCommentlength = mb_strlen($commentdata['comment_content'],'UTF8');
- if ($pointCommentlength < $minCommentlength){
- err('抱歉,您的評論字數過少,請至少輸入' . $minCommentlength .'個字(目前字數:'. $pointCommentlength .'個字)');
- exit;
- }
- if ($pointCommentlength > $maxCommentlength){
- err('對不起,您的評論字數過多,請少於' . $maxCommentlength .'個字(目前字數:'. $pointCommentlength .'個字)');
- exit;
- }
- return $commentdata;
- }
- add_filter('preprocess_comment', 'set_comments_length');
区分自己的评论方式,然后创作吧,骚年!
温馨提示:本文最后更新于2019年3月19日,已超过 2 年没有更新,如果文章内容或图片资源失效,请留言反馈,模板下载吧会及时处理,谢谢!