RSS <skipDays> tag
Usage
Specifies the days of the week when feed readers should not update an RSS feed.
Child elements
| Tag | Description |
|---|---|
| <day> | Specifies days to skip (you can have up to 7 of these in an RSS feed, Monday-Sunday for the day) |
Example
RSS feed with skipDays:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
<title>Landofcode.com web tutorials updates</title>
<link>http://www.landofcode.com</link>
<description>Web development tutorials</description>
<skipDays>
<day>Monday</day>
<day>Tuesday</day>
<day>Wednesday</day>
<skipDays>
<item>
<title>Site usability</title>
<link>http://www.landofcode.com/usability.html</link>
<description>Learn how to improve the usability of your site</description>
</item>
<item>
<title>New HTML tutorials</title>
<link>http://www.landofcode.com/html-tutorials/</link>
<description>Five new HTML tutorials have been added</description>
</item>
</channel>
</rss>