'
',
'email' => ''
);
return $fields;
}
add_filter( 'comment_form_defaults', 'bse_comment_form' );
function bse_comment_form( $args ) {
$args['title_reply_before'] = '';
$args['comment_field'] = '';
$args['class_submit'] = 'btn btn-default mr-xs-3 ml-xs-3'; // 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' );