Changeset 25881 for branches/3.7/src/wp-includes/feed-rdf.php
- Timestamp:
- 10/23/2013 02:39:36 PM (12 years ago)
- Location:
- branches/3.7/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.7/src
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
/trunk/src merged eligible /branches/3.1/src 18031 /branches/3.3/src 20543 /branches/3.4/src 21757
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
-
branches/3.7/src/wp-includes/feed-rdf.php
r25868 r25881 17 17 xmlns:admin="http://webns.net/mvcb/" 18 18 xmlns:content="http://purl.org/rss/1.0/modules/content/" 19 <?php 19 <?php 20 20 /** 21 21 * Fires at the end of the feed root to add namespaces. … … 23 23 * @since 2.0.0 24 24 */ 25 do_action( 'rdf_ns' ); 25 do_action( 'rdf_ns' ); 26 26 ?> 27 27 > … … 36 36 <sy:updateFrequency><?php echo apply_filters( 'rss_update_frequency', '1' ); ?></sy:updateFrequency> 37 37 <sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase> 38 <?php 38 <?php 39 39 /** 40 40 * Fires at the end of the RDF feed header. … … 42 42 * @since 2.0.0 43 43 */ 44 do_action( 'rdf_header' ); 44 do_action( 'rdf_header' ); 45 45 ?> 46 46 <items> … … 65 65 <content:encoded><![CDATA[<?php the_content_feed('rdf') ?>]]></content:encoded> 66 66 <?php endif; ?> 67 <?php 67 <?php 68 68 /** 69 69 * Fires at the end of each RDF feed item. … … 71 71 * @since 2.0.0 72 72 */ 73 do_action( 'rdf_item' ); 73 do_action( 'rdf_item' ); 74 74 ?> 75 75 </item>
Note: See TracChangeset
for help on using the changeset viewer.