| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/themes/thevoux-wp/ |
Upload File : |
<?php
/*-----------------------------------------------------------------------------------*/
/* Begin processing our comments
/*-----------------------------------------------------------------------------------*/
/*
* 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;
}
?>
<?php
$vars = $wp_query->query_vars;
$thb_ajax = array_key_exists('thb_ajax', $vars) ? $vars['thb_ajax'] : false;
$article_expanded_comments = ot_get_option('article_expanded_comments', 'off');
?>
<?php if ( !$thb_ajax ) { ?>
<!-- Start #comments -->
<section id="comments" class="cf full <?php echo esc_attr('expanded-comments-'.$article_expanded_comments); ?>">
<div class="row">
<div class="small-12 columns">
<div class="commentlist_parent">
<a href="#" class="comment-button">
<?php get_template_part('assets/svg/comment.svg'); ?>
<?php comments_number(__('No Comments Yet', 'thevoux'), __('1 Comment', 'thevoux'), __('% Comments', 'thevoux') ); ?>
</a>
<?php if ( have_comments() ) : ?>
<div class="commentlist_container">
<ol class="commentlist">
<?php wp_list_comments(
array(
'type' => 'comment',
'style' => 'ol',
'short_ping' => true,
'avatar_size' => 56
)
); ?>
</ol>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) { ?>
<div class="navigation">
<div class="nav-previous"><?php previous_comments_link(); ?></div>
<div class="nav-next"><?php next_comments_link(); ?></div>
</div><!-- .navigation -->
<?php } ?>
</div>
<?php else :
if ( ! comments_open() ) :
?>
<p class="nocomments"><?php _e("Comments are closed", 'thevoux'); ?></p>
<?php endif; // end ! comments_open() ?>
<?php endif; // end have_comments() ?>
<?php
// Comment Form
$commenter = wp_get_current_commenter();
$req = get_option( 'require_name_email' );
$aria_req = ( $req ? ' aria-required="true" data-required="true"' : '' );
$defaults = array( 'fields' => apply_filters( 'comment_form_default_fields', array(
'author' => '<div class="row"><div class="small-12 medium-6 columns"><input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' placeholder="' . __( 'Name', 'thevoux' ) . '"/></div>',
'email' => '<div class="small-12 medium-6 columns"><input id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' placeholder="' . __( 'Email', 'thevoux' ) . '" /></div>',
'url' => '<div class="small-12 columns"><input name="url" size="30" id="url" value="' . esc_attr( $commenter['comment_author_url'] ) . '" type="text" placeholder="' . __( 'Website', 'thevoux' ) . '"/></div></div>' ) ),
'comment_field' => '<div class="row"><div class="small-12 columns"><textarea name="comment" id="comment"' . $aria_req . ' rows="10" cols="58" placeholder="' . __( 'Your Comment', 'thevoux' ) . '"></textarea></div></div>',
'must_log_in' => '<p class="must-log-in">' . sprintf( __( 'You must be <a href="%s">logged in</a> to post a comment.', 'thevoux' ), wp_login_url( apply_filters( 'the_permalink', get_permalink( ) ) ) ) . '</p>',
'logged_in_as' => '<p class="logged-in-as">' . sprintf( __( 'Logged in as <a href="%1$s">%2$s</a>. <a href="%3$s" title="Log out of this account">Log out?</a>', 'thevoux' ), admin_url( 'profile.php' ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( ) ) ) ) . '</p>',
'comment_notes_before' => '<p class="comment-notes">' . __( 'Your email address will not be published.', 'thevoux' ) . '</p>',
'comment_notes_after' => '',
'id_form' => 'form-comment',
'id_submit' => 'submit',
'title_reply' => __( 'Leave a Reply', 'thevoux' ),
'title_reply_to' => __( 'Leave a Reply to %s', 'thevoux' ),
'cancel_reply_link' => __( 'Cancel reply', 'thevoux' ),
'label_submit' => __( 'Submit Comment', 'thevoux' ),
);
comment_form($defaults);
?>
</div>
</div>
</div>
</section>
<!-- End #comments -->
<?php } ?>