mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
88 lines
3.4 KiB
PHP
88 lines
3.4 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* The template for displaying Comments.
|
||
|
*
|
||
|
* @package Hive Lite
|
||
|
*/
|
||
|
|
||
|
if ( ! defined( 'ABSPATH' ) ) {
|
||
|
exit; // Exit if accessed directly
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* 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;
|
||
|
} ?>
|
||
|
<aside>
|
||
|
<div id="comments" class="comments-area <?php if ( ! have_comments() ) {
|
||
|
echo 'no-comments';
|
||
|
} ?>">
|
||
|
<div class="comments-area-title">
|
||
|
<h2 class="comments-title"><?php
|
||
|
if ( have_comments() ) {
|
||
|
printf(
|
||
|
/* translators: %1$s: The number of comments. */
|
||
|
esc_html( _nx( '%1$s Comment', '%1$s Comments', get_comments_number(), 'comments title', 'hive-lite' ) ),
|
||
|
esc_html( number_format_i18n( get_comments_number() ) )
|
||
|
);
|
||
|
} else {
|
||
|
echo '<span class="comment-number comment-number--dark no-comments">i</span>' . esc_html__( 'There are no comments', 'hive-lite' );
|
||
|
} ?></h2>
|
||
|
<?php echo '<a class="comments_add-comment" href="#reply-title">' . esc_html__( 'Add yours', 'hive-lite' ) . '</a>'; ?>
|
||
|
</div>
|
||
|
<?php
|
||
|
// You can start editing here -- including this comment!
|
||
|
if ( have_comments() ) {
|
||
|
if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) {
|
||
|
// are there comments to navigate through
|
||
|
?>
|
||
|
<nav role="navigation" id="comment-nav-above" class="site-navigation comment-navigation">
|
||
|
<span class="comment-number comment-number--dark">…</span>
|
||
|
|
||
|
<h3 class="assistive-text"><?php esc_html_e( 'Comment navigation', 'hive-lite' ); ?></h3>
|
||
|
|
||
|
<div class="nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', 'hive-lite' ) ); ?></div>
|
||
|
<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', 'hive-lite' ) ); ?></div>
|
||
|
</nav><!-- #comment-nav-before .site-navigation .comment-navigation -->
|
||
|
<?php } // check for comment navigation ?>
|
||
|
|
||
|
<ol class="commentlist">
|
||
|
<?php
|
||
|
/* Loop through and list the comments. Tell wp_list_comments()
|
||
|
* to use hive_comment() to format the comments.
|
||
|
* See hive_comment() in inc/extras.php for more.
|
||
|
*/
|
||
|
wp_list_comments(); ?>
|
||
|
</ol><!-- .commentlist -->
|
||
|
|
||
|
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) { // are there comments to navigate through ?>
|
||
|
<nav role="navigation" id="comment-nav-below" class="site-navigation comment-navigation">
|
||
|
<span class="comment-number comment-number--dark">…</span>
|
||
|
|
||
|
<h3 class="assistive-text"><?php esc_html_e( 'Comment navigation', 'hive-lite' ); ?></h3>
|
||
|
|
||
|
<div class="nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', 'hive-lite' ) ); ?></div>
|
||
|
<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', 'hive-lite' ) ); ?></div>
|
||
|
</nav><!-- #comment-nav-below .site-navigation .comment-navigation -->
|
||
|
<?php
|
||
|
}
|
||
|
} ?>
|
||
|
|
||
|
</div><!-- #comments .comments-area -->
|
||
|
<?php
|
||
|
// If comments are closed and there are comments, let's leave a little note, shall we?
|
||
|
if ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?>
|
||
|
<p class="nocomments">
|
||
|
<span class="comment-number comment-number--dark no-comments-box">·</span><span><?php esc_html_e( 'Comments are closed.', 'hive-lite' ); ?></span>
|
||
|
</p>
|
||
|
<?php endif;
|
||
|
|
||
|
comment_form(); ?>
|
||
|
|
||
|
</aside>
|