rss2.0 골격.
1개의 <channel></channel>내부에 <item></item> 여러 개 가능.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" ?> | |
<rss version="2.0"> | |
<channel> | |
<title>my_title</title> | |
<link>http://my_url</link> | |
<description>my_description</description> | |
<item> | |
<title>my_item_title</title> | |
<link>http://my_item_link</link> | |
<description>my_item_description</description> | |
</item> | |
<item> ... </item> | |
... | |
<item> ... </item> | |
</channel> | |
</rss> | |
브라우저에게 rss 제공됨 알리기.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<link rel="alternate" type="application/rss+xml" href="http://my_url/rss.xml" title="title"> | |
</head> |
RSS2.0 규격.
- http://cyber.law.harvard.edu/rss/rss.html
위 주소에서 channel 과 item 의 필수 요소와 옵션 요소들 설명이 되어있다.
기타.
날짜 부분은 RFC822 포맷이어야 함. http://validator.w3.org/feed/docs/error/InvalidRFC2822Date.html
제목등의 표현 문자열에 아래 문자는 변경 처리해야함.
< (less-than sign) ==> <
> (greater-than sign) ==> >
& (ampersand) ==> &
rss 유효성 점검 사이트.
///946.
'지속가능티끌 > 웹,워드프레스' 카테고리의 다른 글
CKEditor. Plugin. LightBox. (0) | 2016.09.08 |
---|---|
파비콘( favicon) 만들기, 웹 사이트 적용하기. (5) | 2016.09.06 |
CKEditor. 커스텀 CSS 적용. (0) | 2016.09.03 |
CKEditor. 수직 스크롤바 항상보이기. (0) | 2016.09.03 |
CKEditor. Plugin. Cy-GistInsert. 설치 및 기본 사용법. gist 코드 삽입 편리하게. (0) | 2016.08.28 |
댓글