48 lines
No EOL
1.7 KiB
PHP
48 lines
No EOL
1.7 KiB
PHP
<?php
|
|
|
|
if (post_password_required())
|
|
return;
|
|
?>
|
|
|
|
<div id="comments" class="comments-area">
|
|
<?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', 'garchive'),
|
|
number_format_i18n(get_comments_number()),
|
|
'<span>' . get_the_title() . '</span>'
|
|
);
|
|
?>
|
|
</h2>
|
|
|
|
<ol class="comment-list">
|
|
<?php
|
|
wp_list_comments(array(
|
|
'style' => 'ul',
|
|
'short_ping' => true,
|
|
'avatar_size' => 30,
|
|
));
|
|
?>
|
|
</ol><!-- .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', 'garchive'); ?></h1>
|
|
<div class="nav-previous"><?php previous_comments_link(__('← Older Comments', 'garchive')); ?></div>
|
|
<div class="nav-next"><?php next_comments_link(__('Newer Comments →', 'garchive')); ?></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.', 'garchive'); ?></p>
|
|
<?php endif; ?>
|
|
|
|
<?php endif; // have_comments() ?>
|
|
|
|
<?php comment_form(); ?>
|
|
|
|
</div><!-- #comments -->
|