将以下代码放到当前主题的 functions.php 文件最后一个 ?> 的前面:
//防国外灌水
function scp_comment_post( $incoming_comment ) {
// 禁止全英文评论
$pattern = '/[x7f-xff]/';
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! " );
}
//禁止 A 链接
if(strstr($incoming_comment['comment_content'], "
这段判断代码请根据自己站点的实际情况删增即可。
◆◆0
发表评论