2011-04-20 23:46:33 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-09-25 18:50:11 +02:00
|
|
|
* Template for displaying Comments
|
2011-05-02 23:04:44 +02:00
|
|
|
*
|
|
|
|
* The area of the page that contains both current comments
|
2011-05-25 19:13:02 +02:00
|
|
|
* and the comment form. The actual display of comments is
|
|
|
|
* handled by a callback to twentyeleven_comment() which is
|
2011-05-02 23:04:44 +02:00
|
|
|
* located in the functions.php file.
|
|
|
|
*
|
2011-04-20 23:46:33 +02:00
|
|
|
* @package WordPress
|
2011-05-18 21:06:09 +02:00
|
|
|
* @subpackage Twenty_Eleven
|
2011-05-02 23:04:44 +02:00
|
|
|
* @since Twenty Eleven 1.0
|
2011-04-20 23:46:33 +02:00
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<div id="comments">
|
|
|
|
<?php if ( post_password_required() ) : ?>
|
2011-05-25 19:13:02 +02:00
|
|
|
<p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'twentyeleven' ); ?></p>
|
|
|
|
</div><!-- #comments -->
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2013-10-09 22:39:09 +02:00
|
|
|
/*
|
2013-09-25 18:50:11 +02:00
|
|
|
* Stop the rest of comments.php from being processed,
|
2011-05-05 00:54:50 +02:00
|
|
|
* but don't kill the script entirely -- we still have
|
|
|
|
* to fully load the template.
|
|
|
|
*/
|
|
|
|
return;
|
2011-04-20 23:46:33 +02:00
|
|
|
endif;
|
2019-01-12 07:41:52 +01:00
|
|
|
?>
|
2011-04-20 23:46:33 +02:00
|
|
|
|
|
|
|
<?php // You can start editing here -- including this comment! ?>
|
|
|
|
|
|
|
|
<?php if ( have_comments() ) : ?>
|
|
|
|
<h2 id="comments-title">
|
|
|
|
<?php
|
2019-01-11 07:04:49 +01:00
|
|
|
if ( 1 === get_comments_number() ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
printf(
|
2019-01-11 07:04:49 +01:00
|
|
|
/* translators: %s: The post title. */
|
|
|
|
__( 'One thought on “%1$s”', 'twentyeleven' ),
|
|
|
|
'<span>' . get_the_title() . '</span>'
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
printf(
|
2021-06-15 17:38:57 +02:00
|
|
|
/* translators: 1: The number of comments, 2: The post title. */
|
2019-01-11 07:04:49 +01:00
|
|
|
_n( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'twentyeleven' ),
|
2018-08-17 03:51:36 +02:00
|
|
|
number_format_i18n( get_comments_number() ),
|
|
|
|
'<span>' . get_the_title() . '</span>'
|
2017-12-01 00:11:00 +01:00
|
|
|
);
|
2019-01-11 07:04:49 +01:00
|
|
|
}
|
2011-04-20 23:46:33 +02:00
|
|
|
?>
|
|
|
|
</h2>
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
|
2011-04-20 23:46:33 +02:00
|
|
|
<nav id="comment-nav-above">
|
2011-06-02 21:30:07 +02:00
|
|
|
<h1 class="assistive-text"><?php _e( 'Comment navigation', 'twentyeleven' ); ?></h1>
|
2011-04-20 23:46:33 +02:00
|
|
|
<div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'twentyeleven' ) ); ?></div>
|
|
|
|
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'twentyeleven' ) ); ?></div>
|
|
|
|
</nav>
|
2020-01-29 01:45:18 +01:00
|
|
|
<?php endif; // Check for comment navigation. ?>
|
2011-04-20 23:46:33 +02:00
|
|
|
|
|
|
|
<ol class="commentlist">
|
2011-05-05 00:54:50 +02:00
|
|
|
<?php
|
2013-10-09 22:39:09 +02:00
|
|
|
/*
|
2013-09-25 18:50:11 +02:00
|
|
|
* Loop through and list the comments. Tell wp_list_comments()
|
2011-05-05 00:54:50 +02:00
|
|
|
* to use twentyeleven_comment() to format the comments.
|
|
|
|
* If you want to overload this in a child theme then you can
|
|
|
|
* define twentyeleven_comment() and that will be used instead.
|
|
|
|
* See twentyeleven_comment() in twentyeleven/functions.php for more.
|
|
|
|
*/
|
|
|
|
wp_list_comments( array( 'callback' => 'twentyeleven_comment' ) );
|
|
|
|
?>
|
2011-04-20 23:46:33 +02:00
|
|
|
</ol>
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
|
2011-04-20 23:46:33 +02:00
|
|
|
<nav id="comment-nav-below">
|
2011-06-02 21:30:07 +02:00
|
|
|
<h1 class="assistive-text"><?php _e( 'Comment navigation', 'twentyeleven' ); ?></h1>
|
2011-04-20 23:46:33 +02:00
|
|
|
<div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'twentyeleven' ) ); ?></div>
|
|
|
|
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'twentyeleven' ) ); ?></div>
|
|
|
|
</nav>
|
2020-01-29 01:45:18 +01:00
|
|
|
<?php endif; // Check for comment navigation. ?>
|
2011-04-20 23:46:33 +02:00
|
|
|
|
2012-11-15 01:48:03 +01:00
|
|
|
<?php
|
2013-10-09 22:39:09 +02:00
|
|
|
/*
|
2013-09-25 18:50:11 +02:00
|
|
|
* If there are no comments and comments are closed, let's leave a little note, shall we?
|
2012-11-15 01:48:03 +01:00
|
|
|
* But we only want the note on posts and pages that had comments in the first place.
|
2011-06-09 13:12:39 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! comments_open() && get_comments_number() ) :
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2017-12-01 00:11:00 +01:00
|
|
|
<p class="nocomments"><?php _e( 'Comments are closed.', 'twentyeleven' ); ?></p>
|
2012-11-15 01:48:03 +01:00
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php endif; // have_comments() ?>
|
2011-04-20 23:46:33 +02:00
|
|
|
|
|
|
|
<?php comment_form(); ?>
|
|
|
|
|
2011-05-25 19:13:02 +02:00
|
|
|
</div><!-- #comments -->
|