equal
deleted
inserted
replaced
3 * RSS 0.92 Feed Template for displaying RSS 0.92 Posts feed. |
3 * RSS 0.92 Feed Template for displaying RSS 0.92 Posts feed. |
4 * |
4 * |
5 * @package WordPress |
5 * @package WordPress |
6 */ |
6 */ |
7 |
7 |
8 header('Content-Type: ' . feed_content_type('rss-http') . '; charset=' . get_option('blog_charset'), true); |
8 header('Content-Type: ' . feed_content_type('rss') . '; charset=' . get_option('blog_charset'), true); |
9 $more = 1; |
9 $more = 1; |
10 |
10 |
11 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?> |
11 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?> |
12 <rss version="0.92"> |
12 <rss version="0.92"> |
13 <channel> |
13 <channel> |
14 <title><?php bloginfo_rss('name'); wp_title_rss(); ?></title> |
14 <title><?php wp_title_rss(); ?></title> |
15 <link><?php bloginfo_rss('url') ?></link> |
15 <link><?php bloginfo_rss('url') ?></link> |
16 <description><?php bloginfo_rss('description') ?></description> |
16 <description><?php bloginfo_rss('description') ?></description> |
17 <lastBuildDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?></lastBuildDate> |
17 <lastBuildDate><?php |
|
18 $date = get_lastpostmodified( 'GMT' ); |
|
19 echo $date ? mysql2date( 'D, d M Y H:i:s +0000', $date ) : date( 'D, d M Y H:i:s +0000' ); |
|
20 ?></lastBuildDate> |
18 <docs>http://backend.userland.com/rss092</docs> |
21 <docs>http://backend.userland.com/rss092</docs> |
19 <language><?php bloginfo_rss( 'language' ); ?></language> |
22 <language><?php bloginfo_rss( 'language' ); ?></language> |
20 |
23 |
21 <?php |
24 <?php |
22 /** |
25 /** |