Changeset 47122 for trunk/src/wp-includes/feed-rdf.php
- Timestamp:
- 01/29/2020 12:43:23 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/feed-rdf.php
r45247 r47122 75 75 <title><?php the_title_rss(); ?></title> 76 76 <link><?php the_permalink_rss(); ?></link> 77 78 <dc:creator><![CDATA[<?php the_author(); ?>]]></dc:creator> 77 79 <dc:date><?php echo mysql2date( 'Y-m-d\TH:i:s\Z', $post->post_date_gmt, false ); ?></dc:date> 78 <dc:creator><![CDATA[<?php the_author(); ?>]]></dc:creator>79 80 <?php the_category_rss( 'rdf' ); ?> 81 80 82 <?php if ( get_option( 'rss_use_excerpt' ) ) : ?> 81 <description><![CDATA[<?php the_excerpt_rss(); ?>]]></description> 82 <?php else : ?> 83 <description><![CDATA[<?php the_excerpt_rss(); ?>]]></description> 84 <content:encoded><![CDATA[<?php the_content_feed( 'rdf' ); ?>]]></content:encoded> 85 <?php endif; ?> 83 <description><![CDATA[<?php the_excerpt_rss(); ?>]]></description> 84 <?php else : ?> 85 <description><![CDATA[<?php the_excerpt_rss(); ?>]]></description> 86 <content:encoded><![CDATA[<?php the_content_feed( 'rdf' ); ?>]]></content:encoded> 87 <?php endif; ?> 88 86 89 <?php 87 90 /**
Note: See TracChangeset
for help on using the changeset viewer.