This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
_s/comments.php

96 lines
3.0 KiB
PHP
Raw Normal View History

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
*
* This is the template that displays the area of the page that contains both the current comments
* and the comment form.
2012-01-07 03:25:13 +00:00
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
2012-01-07 03:25:13 +00:00
* @package _s
*/
/*
* 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.
*/
if ( post_password_required() ) {
return;
}
?>
<div id="comments" class="comments-area">
2012-01-07 03:25:13 +00:00
<?php
// You can start editing here -- including this comment!
if ( have_comments() ) : ?>
<h2 class="comments-title">
2012-01-07 03:25:13 +00:00
<?php
$comment_count = get_comments_number();
if ( 1 === $comment_count ) {
printf(
/* translators: 1: title. */
esc_html_e( 'One thought on &ldquo;%1$s&rdquo;', '_s' ),
'<span>' . get_the_title() . '</span>'
);
} else {
printf( // WPCS: XSS OK.
/* translators: 1: comment count number, 2: title. */
esc_html( _nx( '%1$s thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', $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? ?>
<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>
<div class="nav-links">
<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>
</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
<ol class="comment-list">
2013-12-23 23:26:50 +00:00
<?php
wp_list_comments( array(
'style' => 'ol',
'short_ping' => true,
) );
2013-12-23 23:26:50 +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? ?>
<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>
<div class="nav-links">
<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>
</div><!-- .nav-links -->
</nav><!-- #comment-nav-below -->
<?php
endif; // Check for comment navigation.
2012-01-07 03:25:13 +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>
<?php
endif;
2012-01-07 03:25:13 +00:00
comment_form();
?>
2012-01-07 03:25:13 +00:00
</div><!-- #comments -->