wordpress评论限制,wordpress限制评论字数和限制评论黑名单,限制黑名单ip评论,过滤纯英文评论。
/**
* 为WordPress评论功能增加字数长度限制
* https://www.51yhyh.com/
*/
function lxtx_set_comments_length($commentdata) {
$minCommentlength = 15; //最少字數限制,建议设置为5-10个字
$maxCommentlength = 200; //最多字數限制,建议设置为150-200个字
$pointCommentlength = mb_strlen($commentdata['comment_content'],'UTF8'); //mb_strlen 一个中文字符当做一个长度
if ( ($pointCommentlength < $minCommentlength) ){
err('抱歉,您的评论字数过少,最少输入' . $minCommentlength .'个字(目前字数:'. $pointCommentlength .')');
exit;
}
if ( ($pointCommentlength > $maxCommentlength) && !is_user_logged_in() ){
err('抱歉,您的评论字数过多,最多输入' . $maxCommentlength .'个字(目前字数:'. $pointCommentlength .')');
exit;
}
return $commentdata;
}
add_filter('preprocess_comment', 'lxtx_set_comments_length');
/**
* 为WordPress评论功能限制评论黑名单
* https://www.51yhyh.com/
*/
function mac_fuckspam($comment) {
if( is_user_logged_in()){ return $comment;} //登录用户无压力...
if( wp_blacklist_check($comment['comment_author'],$comment['comment_author_email'],$comment['comment_author_url'], $comment['comment_content'], $comment['comment_author_IP'], $comment['comment_agent'] )){
header("Content-type: text/html; charset=utf-8");
exit('你填写的某项信息或IP地址不符合评论规范,无法进行评论,请文明评论!请重新编辑后提交');
} else {
return $comment;
}
}
add_filter('preprocess_comment', 'mac_fuckspam');
/**
* 为WordPress评论功能过滤纯英文垃圾评论
* https://www.51yhyh.com/
*/
function refused_spam_comments( $comment_data ) { $pattern = '/[一-龥]/u';
if(!preg_match($pattern,$comment_data['comment_content'])) {
wp_die('评论必须含中文!'); }
return( $comment_data ); }
add_filter('preprocess_comment','refused_spam_comments');