comment_link WordPress Filter Hook
The comment_link hook is used to filter the link to a comment.
apply_filters( 'comment_link', string $comment_permalink ) #
Filters the current comment’s permalink.
Description
See also
Parameters
- $comment_permalink
(string)The current comment permalink.
More Information
The comment_link filter provides the ability to alter the links to post comments in the RSS feed.
When the ‘comment_link’ filter is called, it is passed one parameter: the link.
add_filter( 'comment_link', 'filter_function_name', 10, 3 ); function filter_function_name( $link) { // Manipulate comment link return $link; }
Where ‘filter_function_name’ is the function WordPress should call when the filter is run. Note that the filter function must return a value after it is finished processing or the result will be empty.
filter_function_name should be unique function name. It cannot match any other function name already declared.
Source
File: wp-includes/feed.php
Changelog
Version | Description |
---|---|
3.6.0 | Introduced. |