comment_reply_link_args WordPress Filter Hook
The comment_reply_link_args hook allows you to modify the default arguments used for the comment reply link. This can be useful if you want to change the default behavior of the link, or add additional arguments for use in your own custom functions.
apply_filters( 'comment_reply_link_args', array $args , WP_Comment $comment , WP_Post $post ) #
Filters the comment reply link arguments.
Parameters
- $args
(array)Comment reply link arguments. See get_comment_reply_link() for more information on accepted arguments.
- $comment
(WP_Comment)The object of the comment being replied to.
- $post
Source
Changelog
Version | Description |
---|---|
4.1.0 | Introduced. |