The maximum entries in the rss feed shouldn't be limited to the number of posts displayed on the front page. They should limit at something like 25.
this can be fixed by editing rss.php and atom.php so that the line: $entries = $entry->getEntries();
is changed to
$entries = $entry->getEntries('','25');
fixed rss.php that sets limit to 25 entries
fixed atom.php that sets limit to 25 entries
Log in to post a comment.
this can be fixed by editing rss.php and atom.php so that the line:
$entries = $entry->getEntries();
is changed to
$entries = $entry->getEntries('','25');
fixed rss.php that sets limit to 25 entries
fixed atom.php that sets limit to 25 entries