5
如何重新排列comment_form()中的字段
我正在使用自定义过滤器来更改字段,但是无法弄清楚如何更改注释表单中字段的顺序。 所需订单: 评论栏(第一/顶部) 名称 电子邮件 网站 这是我当前正在使用的代码: 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'] ) . …