How to Move Comment Textarea Bottom in WordPress
To move the Textarea field of comment form in WordPress, write the code in functions.php
1 2 3 4 5 6 7 8 9 10 11 12 |
function neon_move_comment_field_to_bottom( $fields ) { $comment_field = $fields['comment']; unset( $fields['comment'] ); $fields['comment'] = $comment_field; return $fields; } add_filter( 'comment_form_fields', 'neon_move_comment_field_to_bottom' ); |