File: //proc/thread-self/root/var/www/html/wpprotonperinggit/wp-content/themes/voiture/comments.php
<?php
/**
* The template for displaying comments
*
* The area of the page that contains both current comments
* and the comment form.
*
* @package WordPress
* @subpackage Voiture
* @since Voiture 1.0
*/
/*
* If the current post is protected by a password and
* the visitor has not yet entered the password we will
* return early without loading the comments.
*/
if ( post_password_required() ) {
return;
}
?>
<div id="comments" class="comments-area">
<?php if ( have_comments() ) : ?>
<div class="box-comment">
<h3 class="comments-title"><?php comments_number( esc_html__('0 Comments', 'voiture'), esc_html__('1 Comment', 'voiture'), esc_html__('% Comments', 'voiture') ); ?></h3>
<ol class="comment-list">
<?php wp_list_comments('callback=voiture_comment_item'); ?>
</ol><!-- .comment-list -->
<?php voiture_comment_nav(); ?>
</div>
<?php endif; // have_comments() ?>
<?php
// If comments are closed and there are comments, let's leave a little note, shall we?
if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
?>
<p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'voiture' ); ?></p>
<?php endif; ?>
<?php
$aria_req = ( $req ? " aria-required='true'" : '' );
$comment_args = array(
'title_reply'=> esc_html__('Leave a Comment','voiture'),
'comment_field' => '<div class="form-group space-comment">
<textarea rows="7" id="comment" class="form-control" placeholder="'.esc_attr__('Enter Your Comment', 'voiture').'" name="comment"'.$aria_req.'></textarea>
</div>',
'fields' => apply_filters(
'comment_form_default_fields',
array(
'author' => '<div class="row row-20"><div class="col-sm-6 col-xs-12"><div class="form-group ">
<input type="text" name="author" class="form-control" id="author" placeholder="'.esc_attr__('Name', 'voiture').'" value="' . esc_attr( $commenter['comment_author'] ) . '" ' . $aria_req . ' />
</div></div>',
'email' => ' <div class="col-sm-6 col-xs-12"><div class="form-group ">
<input id="email" name="email" class="form-control" type="text" placeholder="'.esc_attr__('Email', 'voiture').'" value="' . esc_attr( $commenter['comment_author_email'] ) . '" ' . $aria_req . ' />
</div></div>',
'Website' => ' <div class="col-xs-12 col-sm-4 hidden"><div class="form-group ">
<input id="website" name="website" placeholder="'.esc_attr__('Website', 'voiture').'" class="form-control" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" ' . $aria_req . ' />
</div></div></div>',
)
),
'label_submit' => esc_html__('Submit Comment', 'voiture'),
'comment_notes_before' => '',
'comment_notes_after' => '',
'title_reply_before' => '<h4 class="comment-reply-title">',
'title_reply_after' => '</h4>',
'class_submit' => 'btn btn-second'
);
?>
<?php voiture_comment_form($comment_args); ?>
</div><!-- .comments-area -->