Tôi đang sử dụng bộ lọc tùy chỉnh để thay đổi các trường, nhưng có thể tìm ra cách thay đổi thứ tự của các trường trong biểu mẫu nhận xét.
Đơn hàng mong muốn:
- lĩnh vực bình luận (đầu tiên / hàng đầu)
- Tên
- trang mạng
Đây là mã mà tôi hiện đang sử dụng:
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'] ) . '" size="30"' . $aria_req . ' /></p>';
$fields['email'] = 'next'; //removes email field
//$fields['url'] = ''; //removes website field
return $fields;
}
add_filter('comment_form_default_fields','alter_comment_form_fields');