comments_template()函数 是wordpress的一个非常重要的函数,主要功能是用来加载评论模板。
一、描述
注意:comments_template()函数只能用于文章页单篇文章single.php或页面page.php,如果不是这些页面,将没办法显示评论。
二、用法
<?php comments_template( $file, $separate_comments ); ?>
三、参数
$file (字符串string) (可选) 要加载的文件, 默认: /comments.php
$separate_comments (布尔值boolean) (可选) 是否根据评论的类型划分评论, 默认: false
四、例子
1、默认用法
<?php comments_template(); ?>
这样直接就调用主题里的comments.php文件。
2、调用自定义评论模板文件
有些时候,咱希望以不同的方式来显示你的评论,这时我们可以建立一个自定义的文件(如 short-comments.php),然后可以通过下面的方式调用:
<?php comments_template( '/short-comments.php' ); ?>
3、源文件
comments_template()位于wp-includes/general-template.php中。
4、可用过滤器和动作
http://codex.wordpress.org/Plugin_API/Filter_Reference#Comment.2C_Trackback.2C_and_Ping_Filters
5、相关函数
get_header(), get_footer(), get_sidebar(), get_template_part(), get_search_form()
暂无评论内容