5
comment_form()のフィールドを再配置する方法
カスタムフィルターを使用してフィールドを変更していますが、コメントフォームのフィールドの順序を変更する方法がわかりません。 希望の順序: コメントフィールド(最初/上) 名 Eメール ウェブサイト これは私が現在使用しているコードです: function alter_comment_form_fields($fields){ $fields['comments'] = 'Test'; $fields['author'] = '<p class="comment-form-author">' . '<label for="author">' . __( 'Your name, please' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) . '<input id="author" name="author" type="text" placeholder="John Smith" value="' . esc_attr( $commenter['comment_author'] ) . …