Easy Tutorial
❮ Rss Tag Skiphours Rss Tag Docs ❯

RSS <author> Element



Definition and Usage

The <author> element specifies the email address of the author of the item.


Tips and Notes

Note: To prevent spam, some developers do not use the <author> element.


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>
    <item>
        <title>RSS Tutorial</title>
        <link>http://www.tutorialpro.org/rss</link>
        <description>tutorialpro.org RSS Tutorial</description>
        <author>[email protected]</author>
    </item>
</channel>
</rss>

❮ Rss Tag Skiphours Rss Tag Docs ❯