/home/arranoyd/otours_bak/wp-content/themes/leadengine/comments.php
<?php
/**
* The template for displaying Comments.
* @package leadengine
* by KeyDesign
*/
if (post_password_required()) {
return;
}
?>
<div id="comments" class="comments-area">
<?php if (have_comments()): ?>
<div class="reply-title"><?php esc_html_e('Comments', 'leadengine'); ?></div>
<?php if (get_comment_pages_count() > 1 && get_option('page_comments')): ?>
<nav id="comment-nav-above" class="navigation comment-navigation" role="navigation">
<h1 class="screen-reader-text"><?php esc_html_e('Comment navigation', 'leadengine'); ?></h1>
<div class="nav-previous"><?php previous_comments_link(esc_html__('← Older Comments', 'leadengine')); ?></div>
<div class="nav-next"><?php next_comments_link(esc_html__('Newer Comments →', 'leadengine')); ?></div>
</nav>
<?php endif; // check for comment navigation ?>
<ul class="comment-list">
<?php
wp_list_comments(array(
'style' => 'ul',
'short_ping' => true,
'avatar_size' => 70
));
?>
</ul>
<?php if (get_comment_pages_count() > 1 && get_option('page_comments')): ?>
<nav id="comment-nav-below" class="navigation comment-navigation" role="navigation">
<h1 class="screen-reader-text"><?php esc_html_e('Comment navigation', 'leadengine'); ?></h1>
<div class="nav-previous"><?php previous_comments_link(esc_html__('← Older Comments', 'leadengine')); ?></div>
<div class="nav-next"><?php next_comments_link(esc_html__('Newer Comments →', 'leadengine')); ?></div>
</nav>
<?php endif; // check for comment navigation ?>
<?php endif; // have_comments() ?>
<?php if ( ! comments_open() && post_type_supports( get_post_type(), 'comments' ) && ! is_page() ) : ?>
<h5 class="no-comments"><?php esc_html_e('Comments are closed.', 'leadengine'); ?></h5>
<?php endif; ?>
<?php comment_form(); ?>
</div>