国内外主机
测评及优惠码

WordPress评论禁止针对指定内容全英文的方法

本文实例讲述了WordPress评论禁止针对指定内容全英文的方法。分享给大家供大家参考。具体分析如下

WordPress评论中第一要过滤的是全英文的垃圾内容了,这个简单我们只要检查包括汉字就可以了,还有时我们希望有些敏感字不让提交,只要一个简单的过滤函数即可.

有很多朋友可能会发现有大量的英文垃圾论内容,下面给个函数,代码如下:

php
function scp_comment_post( $incoming_comment ) {
$pattern = ‘/[一-?]/u';
// 禁止全英文评论
if(!preg_match($pattern, $incoming_comment[‘comment_content'])) {
wp_die( “You should type some Chinese word (like “你好”) in your comment to pass the spam-check, thanks for your patience! 您的评论中必须包含汉字!” );
}
return( $incoming_comment );
}
?>

以下代码禁止许评论中包含

function lianyue_comment_post( $incoming_comment ) {
$http = ‘/[href=”|rel=”nofollow”|http://|]/u';
if(preg_match($http, $incoming_comment[‘comment_content'])) {
wp_die( “万恶的发贴机!” );
}
return( $incoming_comment );
}
add_filter(‘preprocess_comment', ‘lianyue_comment_post');

希望本文所述对大家的WordPress建站有所帮助。

WordPress评论禁止针对指定内容全英文的方法

赞(0)
版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《WordPress评论禁止针对指定内容全英文的方法》
文章链接:https://www.ibytx.com/2995.html
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。

登录

找回密码

注册