Tell me how to change the order of the fields in the form Comments
Now
1 comment
2 name
3 email
4 site
Necessary
1 name
2 email
3 site
4 comment
Add this code to your child theme’s functions.php file:
function pinboard_child_comment_form_fields( $fields ) {
$textarea = $fields['comment'];
unset( $fields['comment'] );
$fields['comment'] = $textarea;
return $fields;
}
add_filter( 'comment_form_fields', 'pinboard_child_comment_form_fields' );