修改主题配置文件,打开当前使用主题目录下的functions.php,在第二行插入下面代码:
// 禁止全英文评论,由悠悠谷blog - 77nn.net整理,转载注明出处!!!
function scp_comment_post( $incoming_comment ) {
$pattern = '/[一-龥]/u';
if(!preg_match($pattern, $incoming_comment['comment_content'])) {
err( "blog is a Chinese blog, so you should enter some of the Chinese, thank you!
由于悠悠谷blog是一个中文博客,所以您应该输入一些中文,谢谢!!" );
}
return( $incoming_comment );
}
add_filter('preprocess_comment', 'scp_comment_post');
// 禁止全英文评论,结束
虽然wp_die()和err()函数都是输出错误提示,但如果混用的话,就会输出错误的调试页面,使用了Ajax无刷新评论代码后使用wp_die()会导致评论错误显示错位,整个页面扭曲变形了。。。
© 版权声明
THE END
暂无评论内容