'
' . ' ' . '
', 'email' => '
' ); return $fields; } add_filter( 'comment_form_defaults', 'bse_comment_form' ); function bse_comment_form( $args ) { $args['title_reply_before'] = '

'; $args['title_reply'] = 'Submit a Comment'; $args['title_reply_after'] = '

'; $args['comment_field'] = '
'; $args['class_submit'] = 'btn btn-default'; // since WP 4.1 return $args; } function bse_move_comment_field_to_bottom( $fields ) { $comment_field = $fields['comment']; unset( $fields['comment'] ); $fields['comment'] = $comment_field; return $fields; } add_filter( 'comment_form_fields', 'bse_move_comment_field_to_bottom' );