导读:comments_template 标签是方便我们在 WordPress 网站中调用评论文件 comments.php 的, 如果在主题当中没有 comments.php 文件, 标签会自动获取程序路...
<?php comments_template( $file, $separate_comments ); ?> 其中的 $file 参数是指可以导入不同的评论文件的, 例如: 我们在主题中创建一个 comments-other.php 文件, 我们可以通过以下代码进行调用:

<?php comments_template( '/comments-other.php' ); ?>