post_reply_link()WP 2.7.0

Displays the HTML content for reply to post link.

No Hooks.

Return

null. Nothing (null).

Usage

post_reply_link( $args, $post );
$args(array)
Override default options.
Default: empty array
$post(int|WP_Post)
Post ID or WP_Post object the comment is going to be displayed on.
Default: current post

Notes

Changelog

Since 2.7.0 Introduced.

post_reply_link() code WP 6.5.2

function post_reply_link( $args = array(), $post = null ) {
	echo get_post_reply_link( $args, $post );
}