File: /home/awaldron/_domains/waldroninteractive.com/wp-content/themes/minione/comments.php
<?php
/**
* Comments.php
* The template for displaying Comments.
* @package WordPress
* @subpackage Mini
* @subpackage Mini 1.0
*/
?>
<?php
/*
* 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;
?>
<!-- Comments -->
<?php if ( comments_open() ) : ?>
<div id="blog-post-comments">
<?php endif; ?>
<?php if ( have_comments() ) : ?>
<h4 class="comments-heading">
<?php
printf( _n( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'minione' ),
number_format_i18n( get_comments_number() ), ''. get_the_title() .'' );
?>
</h4>
<?php 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">
<h1 class="assistive-text"><?php esc_html_e( 'Comment navigation', 'minione' ); ?></h1>
<div class="nav-previous"><?php previous_comments_link( esc_html__( '← Older Comments', 'minione' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments →', 'minione' ) ); ?></div>
</nav><!-- #comment-nav-before .site-navigation .comment-navigation -->
<?php endif; // check for comment navigation ?>
<ul class="media-list">
<?php
/* Loop through and list the comments. Tell wp_list_comments()
* to use mini_comment() to format the comments.
* If you want to overload this in a child theme then you can
* define mini_comment() and that will be used instead.
* See mini_comment() in inc/template-tags.php for more.
*/
wp_list_comments( array( 'callback' => 'minione_comment' ) );
?>
</ul>
<!-- .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">
<h1 class="assistive-text"><?php esc_html_e( 'Comment navigation', 'minione' ); ?></h1>
<div class="nav-previous"><?php previous_comments_link( esc_html__( '← Older Comments', 'minione' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments →', 'minione' ) ); ?></div>
</nav>
<?php endif; // check for comment navigation ?>
<?php endif; // have_comments() ?>
<?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 text-center"><?php esc_html_e( 'Comments are closed.', 'minione' ); ?></p>
<?php endif; ?>
<?php if ( comments_open() ) : ?>
<div class="clearfix">
<div class="pull-right"><small><?php cancel_comment_reply_link(); ?></small></div>
</div>
<?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?>
<p class="alert"><?php esc_html_e('You must be','minione'); ?> <a href="<?php echo wp_login_url( get_permalink() ); ?>"><?php esc_html_e('logged in','minione'); ?></a> <?php esc_html_e('to post a comment.','minione'); ?></p>
<?php else : ?>
<?php comment_form(); ?>
<?php endif; // If registration required and not logged in ?>
<?php endif; // if you delete this the sky will fall on your head ?>
<?php if ( comments_open() ) : ?>
</div>
<?php endif; ?>
<!-- Comments -->