// ADD COMMENT RSS SUBSCRIBE BUTTON
add_action('comment_form', 'comment_rss_subscribe_thing');
function comment_rss_subscribe_thing() {
echo '<div class="comment-rss">' . post_comments_feed_link(__("Subscribe to Comments", "voodoo_lion")) . '</div>';
}
I have the above code in my functions.php to append the comments rss link at the bottom of my comments form. However....
<a href='http://www.rvoodoo.com/2010/09/local-selection-dj-odawa-3/feed/'>Subscribe to Comments</a>
<div class="comment-rss"></div>
Is my output. I'm trying to have the link inseide the HTML, not in front of it. What could be wrong with my code?