post_reply_link( array $args = array(), int|WP_Post $post = null )
Displays the HTML content for reply to post link.
Description
See also
Parameters
- $args
-
(Optional) Override default options,
Default value: array()
- $post
-
(Optional) Post ID or WP_Post object the comment is going to be displayed on. Default current post.
Default value: null
Return
(string|bool|null) Link to show comment form, if successful. False, if comments are closed.
Source
File: wp-includes/comment-template.php
function post_reply_link($args = array(), $post = null) {
echo get_post_reply_link($args, $post);
}
Changelog
Version | Description |
---|---|
WP-2.7.0 | Introduced. |