Displaying the categories from an external RSS feed?

Options

How do I display all the categories for an item from an external RSS feed using the RSS Feed Display template component? When I display "category", it only shows the last category if there is more than one. I also tried to list through the categories, but it does not do anything.

Tagged:

Comments

  • I'm not sure I'm following you. Would you mind posting the feed URL so I can see what categories you are trying to display?

  • Bruce Keilin:

    I'm not sure I'm following you. Would you mind posting the feed URL so I can see what categories you are trying to display?

    Sure, http://blog.au.org/feed/ .

    You'll notice there are multiple <category> elements per item.


    ... <item>
    <title>...</title>





    <pubDate>Tue, 21 Jul 2009 16:22:15 +0000</pubDate>

    <category><!]></category>

    <category><!]></category>
    </item>...







    Here is sample template code:



    <t:list id="rss.channel.item">
    Last category for the item: ${category}
    <t:list id="category"> Will not show </t:list>
    </t:list>

Categories