简介
网上的wordpress屏蔽非中文系垃圾评论的教程文章基本上都不全,有的只是屏蔽了英文和日文,有的只是屏蔽了俄语,于是博主通过搜集,基本上能屏蔽所有非中文系语种的垃圾评论,好了不多说,直接上代码:
屏蔽英文垃圾评论以及日语垃圾评论:
/** * Custom 禁止全英文和日文评论 * @author 无忧网 * @link http://www.wuyouw.com **/ function jsksky_comment_post( $incoming_comment ) { $pattern = '/[一-龥]/u'; $jpattern ='/[ぁ-ん]+|[ァ-ヴ]+/u'; if(!preg_match($pattern, $incoming_comment['comment_content'])) { err( "写点汉字吧,博主外语很捉急! Please write some chinese words!" ); } if(preg_match($jpattern, $incoming_comment['comment_content'])) { err( "日文滚粗!Japanese Get out!日本語出て行け!" ); } return( $incoming_comment ); } add_filter('preprocess_comment', 'jsksky_comment_post');
单独屏蔽日语垃圾评论:
/** * Custom 禁止日文评论 * @author 无忧网 * @link http://www.wuyouw.com **/ function jsksky_comment_jp_post( $incoming_comment ) { $jpattern ='/[ぁ-ん]+|[ァ-ヴ]+/u'; if(preg_match($jpattern, $incoming_comment['comment_content'])){ err( "日文滚粗!Japanese Get out!日本語出て行け!" ); } return( $incoming_comment ); } add_filter('preprocess_comment', 'jsksky_comment_jp_post');
屏蔽俄语垃圾评论:
/** * Custom 禁止北方野蛮人留言(俄语) * @author 无忧网 * @link http://www.wuyouw.com **/ function jsksky_comment_ru_post( $incoming_comment ) { $ruattern ='/[А-я]+/u'; if(preg_match($ruattern, $incoming_comment['comment_content'])) { err( "北方野人讲的话我们不欢迎!Russians, get away!Savage выйти из Русского Севера!" ); } return( $incoming_comment ); } add_filter('preprocess_comment', 'jsksky_comment_ru_post');
屏蔽朝鲜语垃圾评论(韩语):
/** * Custom 禁止朝鲜半岛幸福人民留言(朝鲜语/韩语) * @author 无忧网 * @link http://www.wuyouw.com **/ function jsksky_comment_kr_post( $incoming_comment ) { $krattern ='/[갂-줎]+|[줐-쥯]+|[쥱-짛]+|[짞-쪧]+|[쪨-쬊]+|[쬋-쭬]+|[쵡-힝]+/u'; if(preg_match($krattern, $incoming_comment['comment_content'])) { err( "不要用韩语/朝鲜语思密达!Please do not use Korean!하시기 바랍니다 한국 / 한국어 사용하지 마십시오!" ); } return( $incoming_comment ); } add_filter('preprocess_comment', 'jsksky_comment_kr_post');
屏蔽阿拉伯语垃圾评论:
/** * Custom 禁止真主阿拉留言(阿拉伯语,部分) * @author 无忧网 * @link http://www.wuyouw.com **/ function jsksky_comment_ar_post( $incoming_comment ) { $arattern ='/[؟-ض]+|[ط-ل]+|[م-م]+/u'; if(preg_match($arattern, $incoming_comment['comment_content'])) { err( "不要用阿拉伯语!Please do not use Arabic!!من فضلك لا تستخدم اللغة العربية" ); } return( $incoming_comment ); } add_filter('preprocess_comment', 'jsksky_comment_ar_post');
屏蔽泰语垃圾评论:
/** * Custom 禁止人妖部落留言(泰语) * @author 无忧网 * @link http://www.wuyouw.com **/ function jsksky_comment_th_post( $incoming_comment ) { $thattern ='/[ก-๛]+/u'; if(preg_match($thattern, $incoming_comment['comment_content'])) { err( "人妖你好,人妖再见!Please do not use Thai!กรุณาอย่าใช้ภาษาไทย!" ); } return( $incoming_comment ); } add_filter('preprocess_comment', 'jsksky_comment_th_post');
以上就是各个语种的wordpress垃圾评论屏蔽方法,个人感觉挺全的,需要的童鞋就收藏了吧!差点忘了说这些代码的用法了,其实大家都应该知道怎么用的,为了照顾新人还是说下,以上代码只需添加到当前使用的主题的functions.php
文件即可。
嗨,这是一条评论。
要开始审核、编辑及删除评论,请访问仪表盘的“评论”页面。
评论者头像来自Gravatar。