comment_reply_link

函数
comment_reply_link ( $args = array(), $comment = null, $post = null )
参数
  • (array) $args Optional. Override default options. Default empty array.
    Required:
    Default: array()
  • (int|WP_Comment) $comment Comment being replied to. Default current comment.
    Required:
    Default: null
  • (int|WP_Post) $post Post ID or WP_Post object the comment is going to be displayed on. Default current post.
    Required:
    Default: null
相关
  • get_comment_reply_link()
定义位置
相关方法
get_comment_reply_linkcancel_comment_reply_linkcomments_rss_linkcomment_linkpost_reply_link
引入
2.7.0
弃用
-

comment_reply_link: 这个函数生成一个链接来回复一个特定的评论: 当点击时,它会打开评论表格,在”回复”字段中预先填入评论作者的名字。

显示回复评论链接的HTML内容。

function comment_reply_link( $args = array(), $comment = null, $post = null ) {
	echo get_comment_reply_link( $args, $comment, $post );
}

常见问题

FAQs
查看更多 >