The link to your page doesn't work for me. Anyhow, first thing to check is whether you're sorting the entries based on their dates, for example:
Code:
var socialfeed=new gfeedfetcher("someid", "someclass", "_new")
socialfeed.addFeed("Slashdot", "http://rss.slashdot.org/Slashdot/slashdot") //Specify "label" plus URL to RSS feed
socialfeed.addFeed("Digg", "http://digg.com/rss/index.xml") //Specify "label" plus URL to RSS feed
socialfeed.displayoptions("label datetime snippet") //show the specified additional fields
socialfeed.setentrycontainer("div") //Display each entry as a DIV
socialfeed.filterfeed(6, "date") //Show 6 entries, sort by date
socialfeed.init() //Always call this last
This will cause the latest entries to be shown first...
Bookmarks