说明
该标签显示一个链接,该链接可使用户对某一特定评论进行回复。
如果启用JavaScript且加载了comment-reply.js的Java脚本,链接会将回复框直接显示在评论下方。
用法
<?php comment_reply_link(array_merge( $args, array('reply_text' => 'Reply', 'add_below' =>
$add_below, 'depth' => $depth, 'max_depth' => $args['max_depth']))); ?>
参数
args
(数组)可选。关联数组可改写默认选项。关于该关联数组的信息请见下文中的参数介绍。
comment
(整数)可选。接收回复的评论。
post
(整数)可选。评论所属文章。
参数
以下参数都可以被$args参数改写。
add_below
(字符串)该参数用于JavaScript的moveAddCommentForm()函数的参数。默认值为'post'。
respond_id
(整数)该参数用于JavaScript的moveAddCommentForm()函数的参数。默认值为'respond'。
reply_text
(字符串)仅在用户能够进行回复时使用。默认值为'Leave a comment'(发表评论)。
login_text
(字符串)仅在用户必须登录或注册以发表评论时使用。默认值为 'Log in to leave a comment'(登录后方可发表评论)。
depth
(整数)
注释
- 用法: get_comment_reply_link()(该函数已被删除)
历史记录
始见于WordPress 2.7.0版本
源文件
comment_reply_link()位于wp-includes/comment-template.php中。
分类:中文手册