2015-11
WordPress|comment
コメント欄の入力項目、メルアドなど消す
comment.phpを
<?php comment_form(); ?>
↓
<?php $comments_args = array( 'fields' => array( 'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' . '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p>', 'email' => '', 'url' => '', ), 'title_reply' => 'コメントをどうぞ', 'comment_notes_before' => '', 'comment_notes_after' => '<p class="form-allowed-tags">内容に問題なければ、下記の「コメントを送信する」ボタンを押してください。</p>', 'label_submit' => 'コメントを送信する', ); comment_form($comments_args); ?> コピペ。。
