首页    >    中文手册    >   常用函数-comments_template()

常用函数-comments_template()

说明

该函数加载评论模板,并显示在单篇文章和页面中。

用法

<?php comments_template( $file, $separate_comments ); ?>

参数

$file

(字符串)(可选)将要加载的文件

默认值:/comments.php

$separate_comments

(布尔型)(可选)是否按评论类型分隔评论

默认值:false

示例

使用其它评论模板

有时你可能希望在主题的不同部分显示不同评论效果。那么你需要新建一个替换文件(如short-comments.php)并按以下方式调用该文件:

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

注释

  • 使用全局变量:(数组)当前文章评论对象的$comment列表
  • 用法:$wpdb
  • 用法:$id
  • 用法:$post
  • 用法:若文章没有评论,$withcomments将不会尝试获取评论

历史记录

  • 始见于1.5.0版本

源文件

comments_template()位于wp-includes/general-template.php中。

相关资源

get_header, get_sidebar, get_search_form, comments_template, get_footer()

 

分类:中文手册

* 版权声明:作者WordPress啦! 转载请注明出处。