2012-01-07 03:25:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-09-27 06:20:40 +00:00
|
|
|
* The template for displaying comments
|
2012-01-07 03:25:13 +00:00
|
|
|
*
|
2015-07-01 15:21:44 +00:00
|
|
|
* This is the template that displays the area of the page that contains both the current comments
|
2014-02-07 16:08:48 +00:00
|
|
|
* and the comment form.
|
2012-01-07 03:25:13 +00:00
|
|
|
*
|
2015-07-01 15:21:44 +00:00
|
|
|
* @link https://codex.wordpress.org/Template_Hierarchy
|
|
|
|
*
|
2012-01-07 03:25:13 +00:00
|
|
|
* @package _s
|
|
|
|
*/
|
2012-04-23 21:08:58 +00:00
|
|
|
|
2013-04-28 11:13:55 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
2013-11-14 12:49:50 +00:00
|
|
|
if ( post_password_required() ) {
|
2013-04-28 11:13:55 +00:00
|
|
|
return;
|
2013-11-14 12:49:50 +00:00
|
|
|
}
|
2012-04-23 21:08:58 +00:00
|
|
|
?>
|
|
|
|
|
2013-10-10 17:16:32 +00:00
|
|
|
<div id="comments" class="comments-area">
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
<?php
|
|
|
|
// You can start editing here -- including this comment!
|
|
|
|
if ( have_comments() ) : ?>
|
2012-02-01 19:35:10 +00:00
|
|
|
<h2 class="comments-title">
|
2012-01-07 03:25:13 +00:00
|
|
|
<?php
|
2016-08-25 21:28:24 +00:00
|
|
|
$comment_count = get_comments_number();
|
|
|
|
if ( 1 === $comment_count ) {
|
|
|
|
printf(
|
2016-12-23 14:59:15 +00:00
|
|
|
/* translators: 1: title. */
|
2016-08-25 21:28:24 +00:00
|
|
|
esc_html_e( 'One thought on “%1$s”', '_s' ),
|
|
|
|
'<span>' . get_the_title() . '</span>'
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
printf( // WPCS: XSS OK.
|
2016-12-23 14:59:15 +00:00
|
|
|
/* translators: 1: comment count number, 2: title. */
|
2016-08-25 21:28:24 +00:00
|
|
|
esc_html( _nx( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', $comment_count, 'comments title', '_s' ) ),
|
|
|
|
number_format_i18n( $comment_count ),
|
|
|
|
'<span>' . get_the_title() . '</span>'
|
|
|
|
);
|
|
|
|
}
|
2012-01-07 03:25:13 +00:00
|
|
|
?>
|
2016-08-17 02:24:36 +00:00
|
|
|
</h2><!-- .comments-title -->
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-05-27 17:49:01 +00:00
|
|
|
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
|
2017-06-23 16:41:05 +00:00
|
|
|
<nav id="comment-nav-above" class="navigation comment-navigation">
|
2015-04-29 01:32:11 +00:00
|
|
|
<h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', '_s' ); ?></h2>
|
2015-02-14 11:21:53 +00:00
|
|
|
<div class="nav-links">
|
|
|
|
|
2015-05-05 10:37:07 +00:00
|
|
|
<div class="nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', '_s' ) ); ?></div>
|
|
|
|
<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', '_s' ) ); ?></div>
|
2015-02-14 11:21:53 +00:00
|
|
|
|
|
|
|
</div><!-- .nav-links -->
|
2013-05-20 18:12:09 +00:00
|
|
|
</nav><!-- #comment-nav-above -->
|
2015-05-27 17:49:01 +00:00
|
|
|
<?php endif; // Check for comment navigation. ?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-02-27 22:03:03 +00:00
|
|
|
<ol class="comment-list">
|
2013-12-23 23:26:50 +00:00
|
|
|
<?php
|
2014-06-25 09:31:51 +00:00
|
|
|
wp_list_comments( array(
|
|
|
|
'style' => 'ol',
|
|
|
|
'short_ping' => true,
|
|
|
|
) );
|
2013-12-23 23:26:50 +00:00
|
|
|
?>
|
2013-03-05 00:41:38 +00:00
|
|
|
</ol><!-- .comment-list -->
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-05-27 17:49:01 +00:00
|
|
|
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
|
2017-06-23 16:41:05 +00:00
|
|
|
<nav id="comment-nav-below" class="navigation comment-navigation">
|
2015-04-29 01:32:11 +00:00
|
|
|
<h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', '_s' ); ?></h2>
|
2015-02-14 11:21:53 +00:00
|
|
|
<div class="nav-links">
|
|
|
|
|
2015-05-05 10:37:07 +00:00
|
|
|
<div class="nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', '_s' ) ); ?></div>
|
|
|
|
<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', '_s' ) ); ?></div>
|
2015-02-14 11:21:53 +00:00
|
|
|
|
|
|
|
</div><!-- .nav-links -->
|
2013-02-27 22:47:03 +00:00
|
|
|
</nav><!-- #comment-nav-below -->
|
2015-11-11 21:59:40 +00:00
|
|
|
<?php
|
|
|
|
endif; // Check for comment navigation.
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
endif; // Check for have_comments().
|
|
|
|
|
|
|
|
|
|
|
|
// If comments are closed and there are comments, let's leave a little note, shall we?
|
|
|
|
if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-04-29 01:32:11 +00:00
|
|
|
<p class="no-comments"><?php esc_html_e( 'Comments are closed.', '_s' ); ?></p>
|
2015-11-11 21:59:40 +00:00
|
|
|
<?php
|
|
|
|
endif;
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
comment_form();
|
|
|
|
?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
</div><!-- #comments -->
|