The script by default displays the items in the order as they appear in the RSS feed, which is usually by date. But you can explicitly sort the results inside main.php, in between these lines:
Code:
$feed->cache_max_minutes($cachetime);
$feed->feed_url($rssurl);
$feed->init();
$max = $feed->get_item_quantity($feednumber);
You'll need to check SimplePie's documentation for what function to call to sort the items. Note however that the version of SP used in this script is an older version of what's currently available on their website, so cerain functions may not be available or are different in syntax.
Bookmarks