wpseek.com
WordPress开发者和主题制作者的搜索引擎



comment_reply_link › WordPress Function

Since2.7.0
已弃用n/a
comment_reply_link ( $args = array(), $comment = null, $post = null )
参数: (3)
  • (array) $args Optional. Override default options. Default empty array.
    Required: No
    默认: array()
  • (int|WP_Comment) $comment Optional. Comment being replied to. Default current comment.
    Required: No
    默认: null
  • (int|WP_Post) $post Optional. Post ID or WP_Post object the comment is going to be displayed on. Default current post.
    Required: No
    默认: null
查看:
定义在:
文档:

Displays the HTML content for reply to comment link.



源码

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