post_reply_link() WordPress Function
The post_reply_link() function allows you to display a link that will take the user to the reply form for a particular comment. This is useful if you want to give the user the ability to reply to a comment from the front-end of your site.
post_reply_link( array $args = array(), int|WP_Post $post = null ) #
Displays the HTML content for reply to post link.
Description
See also
Parameters
Source
File: wp-includes/comment-template.php
function post_reply_link( $args = array(), $post = null ) {
echo get_post_reply_link( $args, $post );
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 2.7.0 | Introduced. |