WordPress评论回复链接标签:comment_reply_link

WordPress模板标签comment_reply_link用于输出评论回复链接,通常用在自定义评论模板中。

comment_reply_link( array $args = array(), integer $comment = null, integer $post = null )

函数参数

$args

数组,默认值如下:

$defaults = array(
	'add_below'     => 'comment',
	'respond_id'    => 'respond',
	'reply_text'    => __( 'Reply' ),
	/* translators: Comment reply button text. 1: Comment author name */
	'reply_to_text' => __( 'Reply to %s' ),
	'login_text'    => __( 'Log in to Reply' ),
	'max_depth'     => 0,
	'depth'         => 0,
	'before'        => '',
	'after'         => ''
);

$args参数可用的值如下:

add_below

字符串值,默认值:comment

JavaScript addComment.moveForm()方法的参数,例如:{$add_below}-{$id},则评论容器的ID为类似:comment-23

respond_id

字符串值,默认值:respond

JavaScript addComment.moveForm()方法的参数

reply_text

字符串值,默认值:Reply

回复链接的锚文本

login_text

字符串值,默认值:Log in to Reply

只有在“需要登录才能发表评论”时显示

depth

整数型,默认值:0

新评论的的层级数

before

字符串值,默认为空

在回复评论链接前添加的字符

after

字符串值,默认为空

在回复评论链接后面添加的字符

$comment

整数型,默认值:null

要显示的评论ID

$post

整数型,默认值:null

要显示的评论所在的文章ID

函数使用示例

<?php comment_reply_link(); ?>

扩展阅读

comment_reply_link()函数位于:wp-includes/comment-template.php

相关函数:

阿里云