WordPress函数:comments_template(获取评论模板)

念桥上风景,为你痴守一世繁华。旅行的意义不在于浏览风景,而是到一个完全陌生的环境,放空自己,感受享受孤独!

描述

加载评论模板。只能用于单篇 文章 或 页面 来显示评论,如果不是这些页面,将没办法显示。

用法

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

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

参数

$file
(字符串string) (可选) 要加载的文件

默认: /comments.php
$separate_comments
(布尔值boolean) (可选) 是否根据评论的类型划分评论

默认: false

例子

默认用法

1
<?php comments_template(); ?>

<?php comments_template(); ?>

另类的评论模板

在某些情况下,你希望以不同的方式来显示你的评论,那么,你可以建立一个自定义的文件(例如 short-comments.php),并且通过下面的方式调用:

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

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

注释

Uses global: (array) $comment List of comment objects for the current post

Uses: $wpdb

Uses: $id

Uses: $post

Uses: $withcomments Will not try to get the comments if the post has none.

所在文件

comments_template() 包含在 wp-includes/comment-template.php.

可用过滤器和动作

List of comment filters and actions

相关函数

comment_form()

get_header(), get_footer(), get_sidebar(), get_template_part(), get_search_form()

到此这篇关于WordPress函数:comments_template(获取评论模板)就介绍到这了。你不勇敢,没人替你坚强。更多相关WordPress函数:comments_template(获取评论模板)内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!

您可能有感兴趣的文章
WordPress站点Gravatar头像前后台不显示的如何解决办法

WordPress主题需要支持https吗?WordPress站点如何如何实现https?

WordPress站点的页面/标签/分类URL地址如何添加.html?

WordPress站点更换了域名后数据库应该如何操作替换新旧域名?

WordPress安装在主机空间的什么目录里面?根目录在哪里?