探索,發現,愛好、學習,記錄,分享。
學海無涯,天涯若比鄰,三人行,必有我師。

WP限制评论字数的方法

在主题functions.php文件适当位置加入以下代码:

/* 设定评论字数限制开始 */
function set_comments_length($commentdata) {
$minCommentlength = 5;      //最少字数限制
$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');
/* 设定评论字数限制结束 */

版權聲明:本文采用知識共享 署名4.0國際許可協議 [BY-NC-SA] 進行授權
轉載事宜:如需轉載需徵得應允,轉載必須注明來源於本站的信息。
文章名称:《WP限制评论字数的方法》
文章链接:https://www.thefreesky.com/blog/26249.html
本站資源僅供個人學習交流,請於下載後24小時內刪除,不允許用於商業用途,否則法律問題自行承擔。

評論 抢沙发