post_comments_feed_link filter-hookWP 1.5.1

Filters the post comments feed permalink.

Usage

add_filter( 'post_comments_feed_link', 'wp_kama_post_comments_feed_link_filter' );

/**
 * Function for `post_comments_feed_link` filter-hook.
 * 
 * @param string $url Post comments feed permalink.
 *
 * @return string
 */
function wp_kama_post_comments_feed_link_filter( $url ){

	// filter...
	return $url;
}
$url(string)
Post comments feed permalink.

Changelog

Since 1.5.1 Introduced.

Where the hook is called

get_post_comments_feed_link()
post_comments_feed_link
wp-includes/link-template.php 820
return apply_filters( 'post_comments_feed_link', $url );

Where the hook is used in WordPress

Usage not found.