V-antena and Tanimoto's page

谷本の備忘録・雑記帳・work

>

月: 2021年4月

MONTHLY ARCHIVE

スパムメールで長文のものがあるので長さを制限する。
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;
}

なお、コメント欄設置自体は下記のサイトが参考になった。

http://webdesign.practice.jp/wordpress-theme16-comments-php

V-antena and Tanimoto's page

あなたはIPv4でアクセスしています