Ticket #25229: wp-includes-feed-rss.2.diff
File wp-includes-feed-rss.2.diff, 955 bytes (added by , 11 years ago) |
---|
-
wp-includes/feed-rss.php
17 17 <lastBuildDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?></lastBuildDate> 18 18 <docs>http://backend.userland.com/rss092</docs> 19 19 <language><?php bloginfo_rss( 'language' ); ?></language> 20 <?php 21 /** 22 * Fired at the end of the RSS Feed Header. 23 * 24 * @since 2.0.0 25 */ 26 ?> 20 27 <?php do_action('rss_head'); ?> 21 28 22 29 <?php while (have_posts()) : the_post(); ?> … … 24 31 <title><?php the_title_rss() ?></title> 25 32 <description><![CDATA[<?php the_excerpt_rss() ?>]]></description> 26 33 <link><?php the_permalink_rss() ?></link> 34 <?php 35 /** 36 * Fired at the end of each RSS feed item. 37 * 38 * @since 2.0.0 39 */ 40 ?> 27 41 <?php do_action('rss_item'); ?> 28 42 </item> 29 43 <?php endwhile; ?>