いくつか方法がありますが、
あえておおもとのプログラムをいじって確実に表示しない方法を紹介します。
編集するファイルは
1 |
wp-includes/comment-template.php |
です。
このファイルの「comment_form」関数を探してください。
1 |
function comment_form( $args = array(), $post_id = null ) { |
この関数の中で$defaultsという変数を定義している部分があり、
この定義の中の「comment_notes_before」の内容を削除します。
1 2 3 4 |
$defaults = array( ~中略~ 'comment_notes_before' => '', ); |