Skip to content

Instantly share code, notes, and snippets.

@lmm214
Created July 6, 2015 13:44
Show Gist options
  • Save lmm214/e6584f891b1620899919 to your computer and use it in GitHub Desktop.
Save lmm214/e6584f891b1620899919 to your computer and use it in GitHub Desktop.
禁止全英文评论
function scp_comment_post( $incoming_comment ) {
$pattern = '/[一-龥]/u';
if(!preg_match($pattern, $incoming_comment['comment_content'])) {
wp_die( "您的评论中必须包含中文!" );
}
return( $incoming_comment );
}
add_filter('preprocess_comment', 'scp_comment_post');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment