Scenario:
"I want to make sure my RSS feed is valid and I also want to have a link to demonstrate this, like the 'Valid XHTML' links. What do I need to do?"
Solution:
<a href="http://feedvalidator.org/check.cgi?url=http%3A//www.yourdomain.com/xml-rss2.php">Valid RSS</a>
where "www.yourdomain.com" is your domain.
<guid><%blogurl%>index.php?itemid=<%itemid%></guid>
like this:
<item> <title><![CDATA[<%title%>]]></title> <link><%blogurl%>index.php?itemid=<%itemid%></link> <description><![CDATA[<%body%><%more%>]]></description> <category><%category%></category> <comments><%blogurl%>index.php?itemid=<%itemid%></comments> <pubDate><%date(rfc822)%></pubDate> <guid><%blogurl%>index.php?itemid=<%itemid%></guid> </item>
Footnotes:
1. Using the default skin as an example, go to your Nucleus Admin area and click on "Skin Files". Click on the "default" folder and the "Edit" link next to "footer.inc". Replace the following code:
<div id="copyrights"> <small>Copyright | <a href="http://nucleuscms.org"><%version%></a> | <a href="http://validator.w3.org/check?uri=referer">Valid XHTML 1.0 Strict</a> | <a href="http://jigsaw.w3.org/css-validator/">Valid CSS</a> | <a href="#top">Back to top</a></small> </div>
with this:
<div id="copyrights"> <small>Copyright | <a href="http://nucleuscms.org"><%version%></a> | <a href="http://validator.w3.org/check?uri=referer">Valid XHTML 1.0 Strict</a> | <a href="http://jigsaw.w3.org/css-validator/">Valid CSS</a> | <a href="http://feedvalidator.org/check.cgi?url=http%3A//www.yourdomain.com/xml-rss2.php">Valid RSS</a> <a href="#top">Back to top</a></small> </div>
Original forum thread (thanks, NeoCon Hitman!):
http://forum.nucleuscms.org/viewtopic.php?t=12036