File: /home/wwwrenee/public_html/wp-content/themes/efor/comments.php
<?php
if (post_password_required())
{
return;
}
?>
<?php
if (comments_open() || get_comments_number())
{
?>
<div id="comments" class="comments-area">
<?php
if (have_comments())
{
?>
<h3 class="widget-title">
<span>
<?php
printf(_n('1 Comment %2$s', '%1$s Comments %2$s', get_comments_number(), 'efor'),
number_format_i18n(get_comments_number()), "");
?>
</span>
</h3>
<ol class="commentlist">
<?php
wp_list_comments(array('callback' => 'efor_theme_comments',
'style' => 'ol'));
?>
</ol>
<?php
if ((get_comment_pages_count() > 1) && get_option('page_comments'))
{
?>
<nav class="navigation comment-nav" role="navigation">
<div class="nav-previous">
<?php
previous_comments_link('← ' . esc_html__('Older Comments', 'efor'));
?>
</div>
<div class="nav-next">
<?php
next_comments_link(esc_html__('Newer Comments', 'efor') . ' →');
?>
</div>
</nav>
<?php
}
}
?>
<?php
comment_form(
array(
'title_reply' => esc_html__('Leave A Comment', 'efor')
)
);
?>
</div>
<?php
}
?>