comment_reply_link( array $args = array(), int $comment = null, int|WP_Post $post = null )

Displays the HTML content for reply to comment link.


Description Description

See also See also


Top ↑

Parameters Parameters

$args

(array) (Optional) Override default options.

Default value: array()

$comment

(int) (Optional) Comment being replied to. Default current comment.

Default value: null

$post

(int|WP_Post) (Optional) Post ID or WP_Post object the comment is going to be displayed on. Default current post.

Default value: null


Top ↑

Source Source

File: wp-includes/comment-template.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
2.7.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

  1. Skip to note 1 content
    Contributed by Fabiano Alencar
    <?php comment_reply_link( array_merge($args, array(
        'reply_text' => __('Responder <span>&darr;</span>', 'textdomain'),
        'depth'      => $depth,
        'max_depth'  => $args['max_depth']
        )
    )); ?>

You must log in before being able to contribute a note or feedback.