RSS <language>
Element
Definition and Usage
The <language>
element is used to specify the language in which the RSS document is written.
Tips and Notes
Tip: The <language>
element allows aggregators to group sites by language.
Tip: View standard language codes.
Example
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>tutorialpro.org Home Page</title>
<link>http://www.tutorialpro.org</link>
<description>Free Programming Tutorials</description>
<language>zh-cn</language>
<item>
<title>RSS Tutorial</title>
<link>http://www.tutorialpro.org/rss</link>
<description>tutorialpro.org RSS Tutorial</description>
</item>
</channel>
</rss>