Is there any simple / sane way to create an RSS feed for a single category?
We're trying to create a feed for all entries in our "press release" category - we don't need to do it with the other categories
Reported on Movable Type 4.2
Is there any simple / sane way to create an RSS feed for a single category?
We're trying to create a feed for all entries in our "press release" category - we don't need to do it with the other categories
Reported on Movable Type 4.2
Clone your RSS template, and use this: http://www.movabletype.org/documentation/appendices/tags/entries.html#category
This code shows the feed link on the orange RSS icon; you can of course swap out the img source for text inside the link.
<MTCategories>
<mt:If tag="EntryCategory" eq="press releases">
<a href="<MTBlogArchiveURL>rss/<MTCategoryLabel dirify="-">/index.xml"><img src="<MTBlogURL>images/rss.jpg" width="10" height="10" hspace="5" alt="<MTCategoryLabel> RSS feed" /></a>
</mt:If>
</MTCategories>
Create an Entry Listing Archive Template, call it Category RSS, with Category Archive Mapping using this path.
rss/<$MTArchiveCategory dirify="-"$>/index.xml
More on that part here if you need it.
Thanks :)