wp_get_current_commenter()函数可以获取当前的评论者姓名、邮箱和URL的值,可以用在fields表单内的value字段显示

语法

<?php wp_get_current_commenter() ?>

参数

返回一个数组
Array (
    ['comment_author'] => 'name',
    ['comment_author_email'] => 'email',
    ['comment_author_url'] => 'url'
)

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

语法结构

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

参数

$file (字符串string) (可选) 要加载的文件 默认: comments.php
$separate_comments (布尔值boolean) (可选) 是否根据评论的类型划分评论 默认: false