'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 field 'author' => '
', //'author' => '
', //Email Field 'email' => '
', //URL Field 'url' => '
', //Cookies // 'cookies' => '' . $comment_cookies_1 . '' . $comment_cookies_2 . '', ), // 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', ); //comment_form($comments_args); $commenter = wp_get_current_commenter(); $req = get_option( 'require_name_email' ); $aria_req = ( $req ? " aria-required='true'" : '' ); $args = array( 'fields' => apply_filters( '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' => '
', ); //TODO: MAKE THE STYLES WORK!!! comment_form($args); // $args = array( // 'fields' => apply_filters( // 'comment_form_default_fields', // array( // 'author' => // '

' . // ' ' . // ($req ? '*' : '') . // '

', // 'email' => // '

' . // ($req ? '*' : '') . // '

', // 'url' => // '

' . // '

' // ) // ), // 'comment_field' => '

' // ); // comment_form($args); ?>