我有点麻烦。我的评论不会显示,我已经检查了我的comments.php
,但我没有看到原因?上周一切都进展顺利然后突然间没有显示出来。
我的代码是
<?php
if ( post_password_required() ) {
return;
}
?>
<div id="comments" class="comments-area">
<?php
if ( have_comments() ) : ?>
<h2 class="comments-title">
<?php
$comments_number = get_comments_number();
printf('Comments:');
?>
</h2>
<ol class="comment-list">
<?php
wp_list_comments( array(
'style' => 'ol',
'short_ping' => true,
'avatar_size' => 42,
'type' => 'comment'
) );
?>
</ol>
<?php endif;?>
<?php
if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
?>
<p class="no-comments"><?php _e( 'Comments are closed.', 'twentysixteen' ); ?></p>
<?php endif; ?>
<?php
comment_form( array(
'title_reply_before' => '<h2 id="reply-title" class="comment-reply-title">',
'title_reply_after' => '</h2>',
) );
?>
</div>
我的帖子模板是
<?php
get_header(); ?>
<div id="primary" class="content-area main-template-content-post">
<main id="main" class="site-main" role="main">
<?php single_blog_loop();?>
<?php comments_template();?>
</main>
</div>
<?php get_sidebar();?>
<?php get_footer(); ?>
我尝试过包含comments.php
但是没有成功。我错过了什么吗?我搜索了答案,但似乎没有任何效果。从今天早上起我一直坚持这一点。任何帮助将不胜感激,提前谢谢。