wordpress的评论这块,有人忧愁有人喜,忧愁的是频繁的广告好闹心,喜的各种限制操作已经让评论很安静,比如大叔,哈哈,前几天墨手说奶子的站存在评论XSS漏洞。。。我急忙的说,来试试我的呢,他尽然告诉我,“不行,你的限制太多了”,那么是什么黑科技让评论如何的安心呢?请进《wordpress垃圾评论的新战术》,但是,今天说的,是wordpress评论字数限制,从而更加严格的规范了评论者的行为!
那么直接上今天的黑科技吧,将下列代码插入到主题的functions.php内,
wordpress默认评论方式:
- /* 設定評論字數限制開始 */
- function set_comments_length($commentdata) {
- $minCommentlength = 3; //最少字數限制
- $maxCommentlength = 1000; //最多字數限制
- $pointCommentlength = mb_strlen($commentdata['comment_content'],'UTF8'); //mb_strlen 1個中文字符當作1個長度
- 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'); //mb_strlen 1個中文字符當作1個長度
- if ($pointCommentlength < $minCommentlength){
- err('抱歉,您的評論字數過少,請至少輸入' . $minCommentlength .'個字(目前字數:'. $pointCommentlength .'個字)');
- exit;
- }
- if ($pointCommentlength > $maxCommentlength){
- err('對不起,您的評論字數過多,請少於' . $maxCommentlength .'個字(目前字數:'. $pointCommentlength .'個字)');
- exit;
- }
- return $commentdata;
- }
- add_filter('preprocess_comment', 'set_comments_length');
- /* 設定評論字數限制結束 */
区分自己的评论方式,然后创作吧,骚年!