comments_template
comments_template 函数是一个调用评论模板的函数,使用起来很简单,与get_header()等函数一样,是一个include文件类函数,今天来讲一下他的使用。
描述
上面已经讲过了,就是调用评论模板的一个函数。
使用
<?PHP comments_template( $file, $separate_comments ); ?>
其中
- $file 需要调用的文件名 默认值: /comments.php
- $separate_comments 是否分隔不用类型的评论 布尔型 默认值: false
讲的比较笼统,更深层次请往下看
使用实例
<?php comments_template(get_post_format().'-comment.php', true ); ?>
这样,就可以根据你不同的文章类型去显示文章评论了。
用法上是不是跟get_template_part()有点类似呢?
至于$separate_comments
准确的意思,我也没搞明白,不过官方默认主题一直都是true的所以我也就跟进了。之前研究过一次,貌似这里指的类型是是否回复的意思。