Hey all,
I’ve just published a new RSS Aggregation module.
Pretty simple, it uses Magpie code to fetch multiple RSS feeds and allows you to output multiple feeds in to an EE template.
It’s only the first version, doesn’t support every single type of RSS and there are probably a few bugs etc. Feel free to post them here, or comment on the article:
TK RSS Aggregator - More information and download link *
* This is a permalink, and the page only ever contains links to the latest version of this module. This thread is updated with details of each update, but there is only one page to get the latest file.
Hi,
I can’t find nothing about other variables using with your module. I’m trying use {feed-title} variable found in module source code. This variable working only between {feed}{/feed} tag pair. But this doesn’t sense. I’d like to use code below but it doesn’t work.
{exp:tk_rss_aggregator limit="8" feeds="1" orderby="date" sort="desc"}
<h2>{feed-title}</h2>
{feed}
<a href="http://{entry-link}" title="{entry-title}" target="_blank" rel="noopener"><strong>{entry-title}</strong></a>
{/feed}
{if no_results}
No Entry
{/if}
Hi there,
Um, no - that won’t work.
{feed-title} does not exist and won’t work. Certainly not within the example either, as it does not particularly make much sense to output the title of a feed outside of a loop (of multiple feeds). Between the {feed} tags you can output data relating to the entries within the feeds which you are calling.
The example code to follow, as mentioned in the documentation is:
{exp:tk_rss_aggregator limit="11" feeds="1|2" orderby="date" sort="desc" content-limit="200" strip-tags="b|strong" suffix="..."}
{feed}
{entry-date format="Ymd H:i:s"}
{entry-title}
{entry-content}
{/feed}
{if no_results}
No results!
{/if}
{/exp:tk_rss_aggregator}
Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.