🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
``` function wpb_preprocess_comment($comment) { if ( strlen( $comment['comment_content'] ) > 5000 ) { wp_die('您的评论太长了,超出了本站最多 5000 字符的限制'); } if ( strlen( $comment['comment_content'] ) < 60 ) { wp_die('您的评论太短,本站要求评论至少 60 个字符'); } return $comment; } add_filter( 'preprocess_comment', 'wpb_preprocess_comment' ); ```