comment_reply_link()
Displays the HTML content for reply to comment link.
Uses: get_comment_reply_link()
1 time — 0.001392 sec (very slow) | 50000 times — 18.71 sec (slow)
No Hooks.
Return
null
. Nothing.
Usage
comment_reply_link( $args, $comment, $post );
- $args(array)
- Override default options.
Default: empty array - $comment(int|WP_Comment)
- Comment being replied to.
Default: current comment - $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. |
Code of comment_reply_link() comment reply link WP 5.9.3
function comment_reply_link( $args = array(), $comment = null, $post = null ) { echo get_comment_reply_link( $args, $comment, $post ); }