Changeset 43571 for trunk/src/wp-includes/feed-rdf.php
- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/feed-rdf.php
r42343 r43571 66 66 while ( have_posts() ) : 67 67 the_post(); 68 ?>68 ?> 69 69 <rdf:li rdf:resource="<?php the_permalink_rss(); ?>"/> 70 70 <?php endwhile; ?> … … 76 76 while ( have_posts() ) : 77 77 the_post(); 78 ?>78 ?> 79 79 <item rdf:about="<?php the_permalink_rss(); ?>"> 80 80 <title><?php the_title_rss(); ?></title> … … 83 83 <dc:creator><![CDATA[<?php the_author(); ?>]]></dc:creator> 84 84 <?php the_category_rss( 'rdf' ); ?> 85 <?php if ( get_option( 'rss_use_excerpt' ) ) : ?>85 <?php if ( get_option( 'rss_use_excerpt' ) ) : ?> 86 86 <description><![CDATA[<?php the_excerpt_rss(); ?>]]></description> 87 87 <?php else : ?>
Note: See TracChangeset
for help on using the changeset viewer.