post_reply_link()
Displays the HTML content for reply to post link.
No Hooks.
Returns
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() post reply link code WP 7.0
function post_reply_link( $args = array(), $post = null ) {
echo get_post_reply_link( $args, $post );
}