一聚教程网:一个值得你收藏的教程网站

热门教程

WordPress评论禁止指定内容(全英文内容)具体方法

时间:2022-06-25 19:14:51 编辑:袖梨 来源:一聚教程网

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

 代码如下 复制代码

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');

热门栏目