Page 1 of 1
RSS feed for comments
Posted: Mon Aug 24, 2009 5:27 pm
by schimanke
Is there a way to create a RSS feed which contains the comments for a certain blog post?
Re: RSS feed for comments
Posted: Mon Aug 24, 2009 5:42 pm
by Don Chambers
This will give you the rss 2 comment feed for entry ID #100:
http://yoursite.com/rss.php?version=2.0 ... ts&cid=100
Re: RSS feed for comments
Posted: Mon Aug 24, 2009 6:40 pm
by yellowled
I usually use this Smarty code at a suitable position in the entries.tpl.
Code: Select all
<a href="{$serendipityBaseURL}rss.php?version=2.0&type=comments&cid={$entry.id}"><abbr title="Really Simple Syndication" lang="en">RSS</abbr> Feed ({$CONST.COMMENTS})</a>
YL
Re: RSS feed for comments
Posted: Tue Aug 25, 2009 8:28 am
by schimanke
Thank you, guys! I will try your suggestions!