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.
understrap/comments.php

122 lines
3.1 KiB
PHP
Raw Permalink Normal View History

2014-12-10 11:36:38 +00:00
<?php
/**
* The template for displaying comments
2014-12-10 11:36:38 +00:00
*
* The area of the page that contains both current comments
* and the comment form.
*
* @package understrap
*/
2019-06-20 08:57:12 +00:00
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
2018-09-10 21:59:04 +00:00
2014-12-10 11:36:38 +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.
*/
if ( post_password_required() ) {
2016-11-21 18:47:05 +00:00
return;
2014-12-10 11:36:38 +00:00
}
?>
2016-11-01 16:13:23 +00:00
<div class="comments-area" id="comments">
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
<?php // You can start editing here -- including this comment! ?>
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
<?php if ( have_comments() ) : ?>
2016-11-21 18:47:05 +00:00
<h2 class="comments-title">
2018-11-18 20:25:27 +00:00
2016-11-21 18:47:05 +00:00
<?php
2018-11-18 20:25:27 +00:00
$comments_number = get_comments_number();
if ( 1 === (int) $comments_number ) {
printf(
/* translators: %s: post title */
esc_html_x( 'One thought on &ldquo;%s&rdquo;', 'comments title', 'understrap' ),
'<span>' . get_the_title() . '</span>'
);
} else {
printf(
esc_html(
/* translators: 1: number of comments, 2: post title */
_nx(
'%1$s thought on &ldquo;%2$s&rdquo;',
'%1$s thoughts on &ldquo;%2$s&rdquo;',
$comments_number,
'comments title',
'understrap'
)
),
number_format_i18n( $comments_number ), // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
2018-11-18 20:25:27 +00:00
'<span>' . get_the_title() . '</span>'
);
}
2016-11-21 18:47:05 +00:00
?>
</h2><!-- .comments-title -->
2014-12-10 11:36:38 +00:00
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through. ?>
2018-11-18 20:25:27 +00:00
2016-11-21 18:47:05 +00:00
<nav class="comment-navigation" id="comment-nav-above">
2018-11-18 20:25:27 +00:00
<h1 class="sr-only"><?php esc_html_e( 'Comment navigation', 'understrap' ); ?></h1>
2018-11-18 20:25:27 +00:00
2016-11-21 18:47:05 +00:00
<?php if ( get_previous_comments_link() ) { ?>
2018-11-18 20:25:27 +00:00
<div class="nav-previous">
2018-11-18 21:01:04 +00:00
<?php previous_comments_link( __( '&larr; Older Comments', 'understrap' ) ); ?>
2018-11-18 20:25:27 +00:00
</div>
<?php } ?>
<?php if ( get_next_comments_link() ) { ?>
<div class="nav-next">
<?php next_comments_link( __( 'Newer Comments &rarr;', 'understrap' ) ); ?>
</div>
2016-11-21 18:47:05 +00:00
<?php } ?>
2016-11-21 18:47:05 +00:00
</nav><!-- #comment-nav-above -->
<?php endif; // Check for comment navigation. ?>
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
<ol class="comment-list">
2016-11-21 18:47:05 +00:00
<?php
2018-11-18 20:25:27 +00:00
wp_list_comments(
array(
'style' => 'ol',
'short_ping' => true,
)
);
2016-11-21 18:47:05 +00:00
?>
2016-11-21 18:47:05 +00:00
</ol><!-- .comment-list -->
2014-12-10 11:36:38 +00:00
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through. ?>
2018-11-18 20:25:27 +00:00
2016-11-21 18:47:05 +00:00
<nav class="comment-navigation" id="comment-nav-below">
2018-11-18 20:25:27 +00:00
<h1 class="sr-only"><?php esc_html_e( 'Comment navigation', 'understrap' ); ?></h1>
2018-11-18 20:25:27 +00:00
2016-11-21 18:47:05 +00:00
<?php if ( get_previous_comments_link() ) { ?>
2018-11-18 20:25:27 +00:00
<div class="nav-previous">
<?php previous_comments_link( __( '&larr; Older Comments', 'understrap' ) ); ?>
</div>
<?php } ?>
<?php if ( get_next_comments_link() ) { ?>
<div class="nav-next">
<?php next_comments_link( __( 'Newer Comments &rarr;', 'understrap' ) ); ?>
</div>
2016-11-21 18:47:05 +00:00
<?php } ?>
2016-11-21 18:47:05 +00:00
</nav><!-- #comment-nav-below -->
2018-11-18 20:25:27 +00:00
<?php endif; // Check for comment navigation. ?>
2014-12-10 11:36:38 +00:00
<?php endif; // End of if have_comments(). ?>
2016-11-21 18:47:05 +00:00
<?php comment_form(); // Render comments form. ?>
2014-12-10 11:36:38 +00:00
</div><!-- #comments -->