WordPress获取评论模板函数comments_template用法

来自:互联网
时间:2018-09-02
阅读:

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

WordPress教程

函数原型

comments_template函数位于wp-includes/comment-template.php。

使用方法
<?php comments_template( $file, $separate_comments ); ?>

$file(字符串string) (可选) 要加载的文件默认: /comments.php

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

按照上述说明,该函数可以使用空参数,默认用法

<?php comments_template(); ?>

传入自定义评论模板文件dAImadog.php,使用下面的方式调用。

<?php comments_template( '/daimadog.php' ); ?>
返回顶部
顶部