'ol', 'short_ping' => true, ) ); ?>

comments.php // But tried to use only internal field names for easy automatic translation. // Hints to access those values from: https://premium.wpmudev.org/blog/customizing-wordpress-comment-form/ $comments_args = array( //Define Fields 'fields' => array( 'author' => '
', 'email' => '
', 'url' => '
', ), // Redefine textarea (the comment body). 'comment_field' => '
', //IDs and Class Names 'id_submit' => __('comment-submit', 'askella'), 'class_form' => 'comments__form', 'class_container' => 'comments', 'class_submit' => 'comments__form-submit', ); $commenter = wp_get_current_commenter(); $req = get_option( 'require_name_email' ); $aria_req = ( $req ? " aria-required='true'" : '' ); $args = array( 'fields' => apply_filters( 'askella_comment_form_default_fields', array( 'author' => '
', 'email' => '
', 'url' => '
', ) ), 'comment_field' => '
', 'id_submit' => __('comment-submit', 'askella'), 'class_form' => 'comments__form', 'class_container' => 'comments', 'class_submit' => 'comments__form-submit', 'title_reply_before' => '
', 'title_reply_after' => '
', ); comment_form($args); ?>