104 lines
2.6 KiB
PHP
104 lines
2.6 KiB
PHP
<?php
|
|
/**
|
|
* The template for displaying comments.
|
|
*
|
|
* The area of the page that contains both current comments
|
|
* and the comment form.
|
|
*
|
|
* @link https://developer.wordpress.org/themes/template-files-section/partial-and-miscellaneous-template-files/#comments-php
|
|
*
|
|
* @package Primer
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
/*
|
|
* 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">
|
|
|
|
<?php if ( have_comments() ) : ?>
|
|
|
|
<h2 class="comments-title">
|
|
<?php
|
|
|
|
printf( // xss ok.
|
|
/* translators: 1. number of comments, 2. post title */
|
|
_n(
|
|
'%1$d thought on %2$s',
|
|
'%1$d thoughts on %2$s',
|
|
get_comments_number(),
|
|
'primer'
|
|
),
|
|
number_format_i18n( get_comments_number() ),
|
|
sprintf(
|
|
'<span>“%s”</span>',
|
|
get_the_title()
|
|
)
|
|
);
|
|
|
|
?>
|
|
</h2>
|
|
|
|
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?>
|
|
|
|
<nav id="comment-nav-above" class="comment-navigation">
|
|
|
|
<h1 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'primer' ); ?></h1>
|
|
|
|
<div class="nav-previous"><?php previous_comments_link( sprintf( /* translators: left arrow (LTR) / right arrow (RTL) */ esc_html__( '%s Older Comments', 'primer' ), is_rtl() ? '→' : '←' ) ); ?></div>
|
|
|
|
<div class="nav-next"><?php next_comments_link( sprintf( /* translators: right arrow (LTR) / left arrow (RTL) */ esc_html__( 'Newer Comments %s', 'primer' ), is_rtl() ? '←' : '→' ) ); ?></div>
|
|
|
|
</nav><!-- #comment-nav-above -->
|
|
|
|
<?php endif; ?>
|
|
|
|
<ol class="comment-list">
|
|
<?php
|
|
|
|
wp_list_comments(
|
|
array(
|
|
'style' => 'ol',
|
|
'short_ping' => true,
|
|
)
|
|
);
|
|
|
|
?>
|
|
</ol><!-- .comment-list -->
|
|
|
|
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?>
|
|
|
|
<nav id="comment-nav-below" class="comment-navigation">
|
|
|
|
<h1 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'primer' ); ?></h1>
|
|
|
|
<div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'primer' ) ); ?></div>
|
|
|
|
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'primer' ) ); ?></div>
|
|
|
|
</nav><!-- #comment-nav-below -->
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?>
|
|
|
|
<p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'primer' ); ?></p>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php comment_form(); ?>
|
|
|
|
</div><!-- #comments -->
|