Changeset 25880 for trunk/src/wp-includes/feed-rdf.php
- Timestamp:
- 10/23/2013 02:37:54 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/feed-rdf.php
r25868 r25880 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.