My RSS feed shows only 1 entry in my feed reader (Apple Mail). I’m using EE 2.1.0, Build 20100810. How do I get the feed to show multiple (20) entries?
Here’s my RSS feed code:
{exp:rss:feed channel="events" show_expired="no" show_future_entries="yes" rdf="off" dynamic_start="no" orderby="date"}
<?xml version="1.0" encoding="{encoding}"?>
<rss version="2.0"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:admin="http://webns.net/mvcb/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>{exp:xml_encode}{channel_name}{/exp:xml_encode}</title>
<link>{channel_url}</link>
<description>{channel_description}</description>
<dc:language>{channel_language}</dc:language>
<dc:creator>{email}</dc:creator>
<dc:rights>Copyright {gmt_date format="%Y"}</dc:rights>
<dc:date>{gmt_date format="%Y-%m-%dT%H:%i:%s%Q"}</dc:date>
<admin:generatorAgent rdf:resource="http://expressionengine.com/" >
{exp:channel:entries channel="events" limit="20" sort="asc" show_expired="no" show_future_entries="yes" rdf="off" dynamic_start="no" orderby="date"}
<item>
<title>{exp:xml_encode}{title}{/exp:xml_encode}</title>
<link>{channel_url}</link>
<guid>{channel_url}</guid>
<description><![CDATA[{if events_description}{events_description}{/if}{if events_time}<strong>Time:</strong> {events_time}{/if}{if events_location}<strong>Location:</strong> {events_location}
]]></description>
<dc:subject>{exp:xml_encode}{categories backspace="1"}{category_name}, {/categories}{/exp:xml_encode}</dc:subject>
<dc:date>{gmt_entry_date format="%Y-%m-%dT%H:%i:%s%Q"}</dc:date>
</item>
{/exp:channel:entries}
</channel>
</rss>
{/exp:rss:feed}Thanks!