function filter_comments($comment) { $pattern = '/^[a-zA-Z0-9]+$/i'; // 匹配全英文和数字的正则表达式 if (preg_match($pattern, $comment->comment_content)) { return new WP_Error('invalid_comment', __('评论内容不允许全为英文或数字代码。', 'text-domain')); } return $comment; } add_filter('preprocess_comment', 'filter_comments'); 放在functions.php文件中
aopao 发表于 2024-11-23 16:30 function filter_comments($comment) { $pattern = '/^[a-zA-Z0-9]+$/i'; // 匹配全英文和数字的正则 ... 这个我在百度上找来套进去过,没效果啊,而且这个仅英文,根本找不到禁止数字的代码。