把下面的代码插入到page页面中即可
<!-- 留言板 -->
<div class="wrap">
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
while(have_posts()):
the_post();
// 判断评论版块是否打开,如果打开就显示评论,否则显示评论关闭
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // 循环结束
?>
</main><!-- #main -->
</div><!-- #primary -->
</div><!-- .wrap -->
<!-- 留言板 -->