Fix indentations
This commit is contained in:
parent
f650e53d9b
commit
42ba13de1b
14 changed files with 364 additions and 368 deletions
38
comments.php
38
comments.php
|
@ -6,21 +6,21 @@
|
|||
* @since Omphaloskepsis 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 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">
|
||||
<div class="row">
|
||||
<div class="col-7" id="comments-list">
|
||||
<h3 id="comments-list-title">Replies</h3>
|
||||
<?php if ( have_comments() ) : ?>
|
||||
<div class="row">
|
||||
<div class="col-7" id="comments-list">
|
||||
<h3 id="comments-list-title">Replies</h3>
|
||||
<?php if ( have_comments() ) : ?>
|
||||
<?php the_comments_navigation(); ?>
|
||||
|
||||
<ol class="comment-list">
|
||||
|
@ -36,16 +36,16 @@ if ( post_password_required() ) {
|
|||
</ol><!-- .comment-list -->
|
||||
|
||||
<?php the_comments_navigation(); ?>
|
||||
<?php else : ?>
|
||||
<?php else : ?>
|
||||
<p id="no-comments">No comments yet.</p>
|
||||
<?php endif; ?>
|
||||
<?php if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?>
|
||||
<?php endif; ?>
|
||||
<?php if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?>
|
||||
<p class="no-comments"><?php wp_kses_post_e( 'Comments are closed.', 'twentysixteen' ); ?></p>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
<div class="col-5" id="comments-reply">
|
||||
<?php
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
<div class="col-5" id="comments-reply">
|
||||
<?php
|
||||
comment_form(
|
||||
array(
|
||||
'title_reply_before' => '<h3 id="comments-reply-title">',
|
||||
|
@ -53,6 +53,6 @@ if ( post_password_required() ) {
|
|||
)
|
||||
);
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div><!-- .comments-area -->
|
||||
|
|
Reference in a new issue