2007-02-23 03:50:05 +01:00
|
|
|
<?php
|
2007-12-25 21:48:01 +01:00
|
|
|
/**
|
|
|
|
* RSS 0.92 Feed Template for displaying RSS 0.92 Posts feed.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
2009-05-16 07:15:21 +02:00
|
|
|
header('Content-Type: ' . feed_content_type('rss-http') . '; charset=' . get_option('blog_charset'), true);
|
2007-02-23 03:50:05 +01:00
|
|
|
$more = 1;
|
|
|
|
|
2009-04-16 20:47:41 +02:00
|
|
|
echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>
|
2007-02-23 03:50:05 +01:00
|
|
|
<rss version="0.92">
|
|
|
|
<channel>
|
2007-03-29 06:08:54 +02:00
|
|
|
<title><?php bloginfo_rss('name'); wp_title_rss(); ?></title>
|
2007-02-23 03:50:05 +01:00
|
|
|
<link><?php bloginfo_rss('url') ?></link>
|
|
|
|
<description><?php bloginfo_rss('description') ?></description>
|
|
|
|
<lastBuildDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?></lastBuildDate>
|
|
|
|
<docs>http://backend.userland.com/rss092</docs>
|
2012-01-29 20:56:33 +01:00
|
|
|
<language><?php bloginfo_rss( 'language' ); ?></language>
|
2007-02-23 03:50:05 +01:00
|
|
|
<?php do_action('rss_head'); ?>
|
|
|
|
|
|
|
|
<?php while (have_posts()) : the_post(); ?>
|
|
|
|
<item>
|
|
|
|
<title><?php the_title_rss() ?></title>
|
|
|
|
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
|
2007-08-21 20:27:45 +02:00
|
|
|
<link><?php the_permalink_rss() ?></link>
|
2007-02-23 03:50:05 +01:00
|
|
|
<?php do_action('rss_item'); ?>
|
|
|
|
</item>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
</channel>
|
|
|
|
</rss>
|