Make WordPress Core

Changeset 2318 for trunk/wp-rss.php


Ignore:
Timestamp:
02/14/2005 04:17:12 AM (21 years ago)
Author:
saxmatt
Message:

Allow RSS language - http://mosquito.wordpress.org/view.php?id=367

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-rss.php

    r2272 r2318  
    1515<!-- generator="wordpress/<?php echo $wp_version ?>" -->
    1616<rss version="0.92">
    17     <channel>
    18         <title><?php bloginfo_rss('name') ?></title>
    19         <link><?php bloginfo_rss('url') ?></link>
    20         <description><?php bloginfo_rss('description') ?></description>
     17<channel>
     18    <title><?php bloginfo_rss('name') ?></title>
     19    <link><?php bloginfo_rss('url') ?></link>
     20    <description><?php bloginfo_rss('description') ?></description>
    2121    <lastBuildDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), 0); ?></lastBuildDate>
    22         <docs>http://backend.userland.com/rss092</docs>
     22    <docs>http://backend.userland.com/rss092</docs>
     23    <language><?php echo get_option('rss_language'); ?></language>
    2324
    2425<?php $items_count = 0; if ($posts) { foreach ($posts as $post) { start_wp(); ?>
    25         <item>
    26             <title><?php the_title_rss() ?></title>
    27 <?php
    28 if (get_settings('rss_use_excerpt')) {
    29 ?>
    30             <description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
    31 <?php
    32 } else { // use content
    33 ?>
    34             <description><?php the_content_rss('', 0, '', get_settings('rss_excerpt_length')) ?></description>
    35 <?php
    36 } // end else use content
    37 ?>
    38             <link><?php permalink_single_rss() ?></link>
    39         </item>
     26    <item>
     27        <title><?php the_title_rss() ?></title>
     28<?php if (get_settings('rss_use_excerpt')) { ?>
     29        <description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
     30<?php } else { // use content ?>
     31        <description><?php the_content_rss('', 0, '', get_settings('rss_excerpt_length')) ?></description>
     32<?php } ?>
     33        <link><?php permalink_single_rss() ?></link>
     34    </item>
    4035<?php $items_count++; if (($items_count == get_settings('posts_per_rss')) && empty($m)) { break; } } } ?>
    41     </channel>
     36</channel>
    4237</rss>
Note: See TracChangeset for help on using the changeset viewer.