2018-03-21 18:19:20 +00:00
< ? php
2021-01-22 16:19:51 +00:00
/**
* The template for displaying comments .
*
* @ package Omphaloskepsis
* @ since Omphaloskepsis 1.0
*/
2018-03-21 18:19:20 +00:00
2021-01-22 16:19:51 +00:00
/*
2021-01-09 11:13:06 +00:00
* 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 ;
}
2018-03-21 18:19:20 +00:00
?>
< div id = " comments " class = " comments-area " >
< div class = " row " >
2021-01-09 11:13:06 +00:00
< div class = " col-7 " id = " comments-list " >
2020-08-08 10:55:20 +01:00
< h3 id = " comments-list-title " > Replies </ h3 >
2018-03-21 18:19:20 +00:00
< ? php if ( have_comments () ) : ?>
2021-01-09 11:13:06 +00:00
< ? php the_comments_navigation (); ?>
2018-03-21 18:19:20 +00:00
2021-01-09 11:13:06 +00:00
< ol class = " comment-list " >
< ? php
wp_list_comments (
array (
'style' => 'ol' ,
'short_ping' => true ,
'avatar_size' => 42 ,
)
);
?>
</ ol ><!-- . comment - list -->
2018-03-21 18:19:20 +00:00
2021-01-09 11:13:06 +00:00
< ? php the_comments_navigation (); ?>
< ? php else : ?>
< p id = " no-comments " > No comments yet .</ p >
2018-03-21 18:19:20 +00:00
< ? php endif ; ?>
2021-01-09 11:13:06 +00:00
< ? php if ( ! comments_open () && get_comments_number () && post_type_supports ( get_post_type (), 'comments' ) ) : ?>
2021-01-22 16:19:51 +00:00
< p class = " no-comments " >< ? php wp_kses_post_e ( 'Comments are closed.' , 'twentysixteen' ); ?> </p>
2018-03-21 18:19:20 +00:00
< ? php endif ; ?>
2021-01-09 11:13:06 +00:00
</ div >
< div class = " col-5 " id = " comments-reply " >
< ? php
comment_form (
array (
'title_reply_before' => '<h3 id="comments-reply-title">' ,
'title_reply_after' => '</h3>' ,
)
);
?>
</ div >
2018-03-21 18:19:20 +00:00
</ div >
</ div ><!-- . comments - area -->