RSS <author> 요소
정의와 사용법
<author> 요소는 item의 작성자의 이메일 주소를 정의합니다.
주석:스팸 메일을 방지하기 위해 일부 개발자들은 <author> 요소를 사용하지 않습니다.
예제
<?xml version="1.0" encoding="ISO-8859-1" ?> <rss version="2.0"> <channel> <title>CodeW3C.com Home Page</title> <link>http://www.codew3c.com</link> <description>Free web building tutorials</description> <item> <title>RSS Tutorial</title> <link>http://www.codew3c.com/rss</link> <description>New RSS tutorial on CodeW3C.com</description> <author>author@codew3c.com</author> </item> </channel> </rss>