Since Wordpress version 3, the comment form has been standarized and can be displayed by using comment_form()
function at the theme code, see the reference. The function accepts 2 parameters, $args and $post_id. Customization for the form fields and textarea markups can be done via $args array. see also this file for reference: wp-includes/comment-template.php at comment_form()
function. Continue reading