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

git-svn-id: https://develop.svn.wordpress.org/trunk@11299 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2009-05-12 06:19:36 +00:00
parent d7a4c9f7a0
commit 86749778d2
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 );
}
/**