apply_filters( 'comment_reply_link', string $comment_reply_link , array $args , WP_Comment $comment , WP_Post $post )
Filters the comment reply link.
Parameters
-
$comment_reply_link
string -
The HTML markup for the comment reply link.
-
$args
array -
An array of arguments overriding the defaults.
-
$comment
WP_Comment -
The object of the comment being replied.
-
$post
WP_Post -
The WP_Post object.
Source
File: wp-includes/comment-template.php
.
View all references
return apply_filters( 'comment_reply_link', $comment_reply_link, $args, $comment, $post );
Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |