Ticket #25229: wp-includes-feed-rss.diff
File wp-includes-feed-rss.diff, 926 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 /** 21 * Fired at the end of the RSS Feed Header. 22 * 23 * @since 2.0.0 24 */ 20 25 <?php do_action('rss_head'); ?> 21 26 22 27 <?php while (have_posts()) : the_post(); ?> … … 24 29 <title><?php the_title_rss() ?></title> 25 30 <description><![CDATA[<?php the_excerpt_rss() ?>]]></description> 26 31 <link><?php the_permalink_rss() ?></link> 32 /** 33 * Fired at the end of each RSS feed item. 34 * 35 * @since 2.0.0 36 */ 27 37 <?php do_action('rss_item'); ?> 28 38 </item> 29 39 <?php endwhile; ?>