Rss Feed

wxdqz

New Member
I've set up a simple rss feed (shown below). I'm wondering if there is a way to set this up so that a user who has no idea what it is doesn't have to use an aggregator or something. If there is, how? I'm really new to xml and so far I've only set up a pod cast and an rss feed.

Could I style the page to say something like: This page isn't meant to be viewed by humans. To subscribe to it, you will need a News Reader or other similar application, plug-in, or another website that supports RSS aggregation (such as Google, Yahoo!, etc).

XML file<rss version="2.0">
<channel>

<title>Feed Title</title>
<link>link to page containing all updates</link>
<description>description</description>
<copyright>Copyright 2006</copyright>

<item>
<title>item title (probably include date</title>
<link>link to item (same as above but with anchor link)</link>
<description>shortened version of what's on the actual page</description>
</item>

</channel>
</rss>
 
Back
Top