-
+ BB0B7E7F6E39F9398522ADB0EA417CD623A194D56D9AFA83002FB1EE556C27E966C3A711A6B203813F3CF7E5B5FB86C879B80DB86A861A4D4E34D42087E98381
mp-wp/wp-includes/feed-rss.php
(0 . 0)(1 . 37)
88761 <?php
88762 /**
88763 * RSS 0.92 Feed Template for displaying RSS 0.92 Posts feed.
88764 *
88765 * @package WordPress
88766 */
88767
88768 header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
88769 $more = 1;
88770
88771 ?>
88772 <?php echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>
88773 <?php the_generator( 'comment' ); ?>
88774 <rss version="0.92">
88775 <channel>
88776 <title><?php bloginfo_rss('name'); wp_title_rss(); ?></title>
88777 <link><?php bloginfo_rss('url') ?></link>
88778 <description><?php bloginfo_rss('description') ?></description>
88779 <lastBuildDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?></lastBuildDate>
88780 <docs>http://backend.userland.com/rss092</docs>
88781 <language><?php echo get_option('rss_language'); ?></language>
88782 <?php do_action('rss_head'); ?>
88783
88784 <?php while (have_posts()) : the_post(); ?>
88785 <item>
88786 <title><?php the_title_rss() ?></title>
88787 <?php if (get_option('rss_use_excerpt')) { ?>
88788 <description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
88789 <?php } else { // use content ?>
88790 <description><?php the_content_rss('', 0, '', get_option('rss_excerpt_length')) ?></description>
88791 <?php } ?>
88792 <link><?php the_permalink_rss() ?></link>
88793 <?php do_action('rss_item'); ?>
88794 </item>
88795 <?php endwhile; ?>
88796 </channel>
88797 </rss>