欢迎光临
我们一直在努力

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

建站超值云服务器,限时71元/月

本文目录
[隐藏]

  • 1描述
  • 2用法
  • 3参数
  • 4例子
    • 4.1默认用法
    • 4.2另类的评论模板
  • 5注释
  • 6所在文件
  • 7可用过滤器和动作
  • 8相关函数

描述

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

用法

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()

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » WordPress函数:comments_template(获取评论模板)
分享到: 更多 (0)