Post comments feed link HTML filter, props JohnLamansky, fixes #9712

git-svn-id: http://svn.automattic.com/wordpress/trunk@11299 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2009-05-12 06:19:36 +00:00
parent b3399e0b70
commit 58929f3eaf
1 changed files with 1 additions and 1 deletions

View File

@ -443,7 +443,7 @@ function post_comments_feed_link( $link_text = '', $post_id = '', $feed = '' ) {
if ( empty($link_text) )
$link_text = __('Comments Feed');
echo "<a href='$url'>$link_text</a>";
echo apply_filters( 'post_comments_feed_link_html', "<a href='$url'>$link_text</a>", $post_id, $feed );
}
/**