post_comments_feed_link_html filter-hook . WP 2.8.0
Filters the post comment feed link anchor tag.
Usage
add_filter( 'post_comments_feed_link_html', 'filter_function_name_361', 10, 3 ); function filter_function_name_361( $link, $post_id, $feed ){ // filter... return $link; }
- $link(string)
- The complete anchor tag for the comment feed link.
- $post_id(int)
- Post ID.
- $feed(string)
- The feed type, or an empty string for the default feed type.
Where the hook is called
post_comments_feed_link_html
wp-includes/link-template.php 712
echo apply_filters( 'post_comments_feed_link_html', $link, $post_id, $feed );