Changeset 6273 for trunk/wp-includes/feed-atom.php
- Timestamp:
- 10/19/2007 03:42:30 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/feed-atom.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/feed-atom.php
r6195 r6273 31 31 <?php endif; ?> 32 32 </author> 33 <title type="<?php html_type_rss(); ?>"><![CDATA[<?php the_title_rss() ?>]]></title> 33 <?php list($content_type, $content) = prep_atom_text_construct(get_the_title()); ?> 34 <title type="<?php echo $content_type ?>"><?php echo $content ?></title> 34 35 <link rel="alternate" type="text/html" href="<?php the_permalink_rss() ?>" /> 35 36 <id><?php the_guid(); ?></id> … … 37 38 <published><?php echo get_post_time('Y-m-d\TH:i:s\Z', true); ?></published> 38 39 <?php the_category_rss('atom') ?> 39 <summary type="<?php html_type_rss(); ?>"><![CDATA[<?php the_excerpt_rss(); ?>]]></summary> 40 <?php list($content_type, $content) = prep_atom_text_construct(get_the_excerpt()); ?> 41 <summary type="<?php echo $content_type ?>"><?php echo $content ?></summary> 40 42 <?php if ( !get_option('rss_use_excerpt') ) : ?> 41 <content type="<?php html_type_rss(); ?>" xml:base="<?php the_permalink_rss() ?>"><![CDATA[<?php the_content('', 0, '') ?>]]></content> 43 <?php list($content_type, $content) = prep_atom_text_construct(get_the_content()); ?> 44 <content type="<?php echo $content_type ?>" xml:base="<?php the_permalink_rss()?>"><?php echo $content ?></content> 42 45 <?php endif; ?> 43 46 <?php atom_enclosure(); ?>
Note: See TracChangeset
for help on using the changeset viewer.