Changeset 2318 for trunk/wp-rss.php
- Timestamp:
- 02/14/2005 04:17:12 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/wp-rss.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-rss.php
r2272 r2318 15 15 <!-- generator="wordpress/<?php echo $wp_version ?>" --> 16 16 <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> 21 21 <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> 23 24 24 25 <?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> 40 35 <?php $items_count++; if (($items_count == get_settings('posts_per_rss')) && empty($m)) { break; } } } ?> 41 </channel>36 </channel> 42 37 </rss>
Note: See TracChangeset
for help on using the changeset viewer.