File: //home/swifizcd/mitmeherbals.com.ng/wp-content/themes/wp-blank/comments.php
<?php
/**
* wp-blank WordPress Theme, ordasvit.com
* wp-blank is distributed under the terms of the GNU GPL
* Copyright: OrdaSvit, Andrey Kvasnevskiy, ordasvit.com
*/
?>
<div class="row comments">
<div class="col-lg-12">
<?php if (have_comments()): ?>
<h2 class="comments-title">
<?php
printf(
_nx('One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'comments title', 'wp-blank'),
number_format_i18n(get_comments_number()),
'<span>' . get_the_title() . '</span>'
);
?>
</h2>
<ul class="comment-list">
<?php
wp_list_comments(
array(
'style' => 'ul',
'short_ping' => true,
'avatar_size' => 74,
));
?>
</ul><!-- .comment-list -->
<?php
// Are there comments to navigate through?
if (get_comment_pages_count() > 1 && get_option('page_comments')):
?>
<nav class="navigation comment-navigation" role="navigation">
<h1 class="screen-reader-text section-heading">
<?php _e('Comment navigation', 'wp-blank'); ?>
</h1>
<div class="nav-previous">
<?php previous_comments_link(__('← Older Comments', 'wp-blank')); ?>
</div>
<div class="nav-next">
<?php next_comments_link(__('Newer Comments →', 'wp-blank')); ?>
</div>
</nav><!-- .comment-navigation -->
<?php endif; // Check for comment navigation ?>
<?php if (!comments_open() && get_comments_number()): ?>
<p class="no-comments">
<?php _e('Comments are closed.', 'wp-blank'); ?>
</p>
<?php endif; ?>
<?php endif; ?>
<?php comment_form(); ?>
</div>
</div><!-- #comments -->