2017-01-12 23:10:07 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The template for displaying comments
|
|
|
|
*
|
|
|
|
* The area of the page that contains both current comments
|
|
|
|
* and the comment form.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Sixteen
|
|
|
|
* @since Twenty Sixteen 1.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">
|
2017-04-11 07:22:35 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-7" id="comments-list">
|
|
|
|
<h3 id="comments-list-title">Comments</h3>
|
|
|
|
<?php if ( have_comments() ) : ?>
|
|
|
|
<?php the_comments_navigation(); ?>
|
|
|
|
|
|
|
|
<ol class="comment-list">
|
|
|
|
<?php
|
|
|
|
wp_list_comments( array(
|
|
|
|
'style' => 'ol',
|
|
|
|
'short_ping' => true,
|
|
|
|
'avatar_size' => 42,
|
|
|
|
) );
|
|
|
|
?>
|
|
|
|
</ol><!-- .comment-list -->
|
|
|
|
|
|
|
|
<?php the_comments_navigation(); ?>
|
|
|
|
<?php else: ?>
|
|
|
|
<p id="no-comments">No comments yet.</p>
|
|
|
|
<?php endif; ?>
|
2017-01-12 23:10:07 +00:00
|
|
|
<?php
|
2017-04-11 07:22:35 +00:00
|
|
|
// If comments are closed and there are comments, let's leave a little note, shall we?
|
|
|
|
if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
|
2017-01-12 23:10:07 +00:00
|
|
|
?>
|
2017-04-11 07:22:35 +00:00
|
|
|
<p class="no-comments"><?php _e( 'Comments are closed.', 'twentysixteen' ); ?></p>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="col-5" id="comments-reply">
|
2017-01-12 23:10:07 +00:00
|
|
|
<?php
|
2017-04-11 07:22:35 +00:00
|
|
|
comment_form( array(
|
|
|
|
'title_reply_before' => '<h3 id="comments-reply-title">',
|
|
|
|
'title_reply_after' => '</h3>',
|
2017-01-12 23:10:07 +00:00
|
|
|
) );
|
|
|
|
?>
|
2017-04-11 07:22:35 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-01-12 23:10:07 +00:00
|
|
|
</div><!-- .comments-area -->
|