Easy Tutorial
❮ Rss Intro Rss Tag Skipdays ❯

RSS <skipDays> Element


Definition and Usage

The <skipDays> element specifies the days on which the aggregator should ignore updating the feed.


Tips and Notes

Tip: A maximum of 7 <skipDays> elements can be used.


Example

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
    <title>tutorialpro.org Homepage</title>
    <link>http://www.tutorialpro.org</link>
    <description>Free Programming Tutorials</description>
    <skipDays>
        <day>Saturday</day>
        <day>Sunday</day>
    </skipDays>
    <item>
        <title>RSS Tutorial</title>
        <link>http://www.tutorialpro.org/rss</link>
        <description>tutorialpro.org RSS Tutorial</description>
    </item>
</channel>
</rss>

❮ Rss Intro Rss Tag Skipdays ❯