I'm using Zend Feed to get a feed from a website. When I run it I only get the 10 latest entries. Is there a way to get the whole feed from the website? All the post since the beginning?!
MY code is
$feed = new Zend_Feed_Atom('http://www.site.net/atom.xml');
echo 'The feed contains ' . $feed->count() . ' entries.' . "\n\n";
foreach ($feed as $entry) {
echo 'Title: ' . $entry->title() . "\n <br/>";
echo 'ID: ' . $entry->id() . "\n <br/>";
echo 'Link: ' . $entry->link() . "\n <br/>";
echo 'Subtitle: ' . $entry->subtitle() . "\n <br/>";
echo 'Author: ' . $entry->author() . "\n <br/>";
echo 'Content: ' . $entry->content() . "\n <br/>";
echo 'Published: ' . $entry->published() . "\n <br/>";
echo 'Summary: ' . $entry->summary() . "\n\n <br /><br /><br />";
}
Thanks!