Can someone explain to me what the stock standard rss file looks like please, is it something like this: <?xml version="1.0" encoding='UTF-8'?> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <channel> <title>wesite title</title> <link>http://www.domain.com</link> <description>description here</description> <language>en-us</language> <item> <title>title here</title> <link>website link</link> <description>adding description</description> </item> <atom:link href="http://www.yourdomain.com/feedlink.xml" rel="self" type="application/rss+xml" /> </channel> </rss> Code (markup): If not can someone shed some light on this please, just a tad confused. Also if I want to add multiple links is it just more <item></item> and what is this guid they refer too as well? Thank you.