スパムメールで長文のものがあるので長さを制限する。
functions.phpに以下のコードを追加
add_filter( 'preprocess_comment', 'wpb_preprocess_comment' );
function wpb_preprocess_comment($comment) {
if( mb_strlen( $comment['comment_content'] ) > 1000 ) {
wp_die('Comment is too long. Please keep your comment under 1000 characters.');
}
return $comment;
}
なお、コメント欄設置自体は下記のサイトが参考になった。