RSS feed for comments
RSS feed for comments
Is there a way to create a RSS feed which contains the comments for a certain blog post?
-
Don Chambers
- Regular
- Posts: 3657
- Joined: Mon Feb 13, 2006 2:40 am
- Location: Chicago, IL, USA
- Contact:
Re: RSS feed for comments
This will give you the rss 2 comment feed for entry ID #100:
http://yoursite.com/rss.php?version=2.0 ... ts&cid=100
http://yoursite.com/rss.php?version=2.0 ... ts&cid=100
=Don=
Re: RSS feed for comments
I usually use this Smarty code at a suitable position in the entries.tpl.
YL
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>Re: RSS feed for comments
Thank you, guys! I will try your suggestions!