Ticket #1526: WP16-wp-atom.php.diff
| File WP16-wp-atom.php.diff, 2.9 KB (added by , 20 years ago) |
|---|
-
wp-atom.php
10 10 11 11 ?> 12 12 <?php echo '<?xml version="1.0" encoding="'.get_settings('blog_charset').'"?'.'>'; ?> 13 <feed version="0.3"14 xmlns="http:// purl.org/atom/ns#"13 <feed 14 xmlns="http://www.w3.org/2005/Atom" 15 15 xmlns:dc="http://purl.org/dc/elements/1.1/" 16 16 xml:lang="<?php echo get_option('rss_language'); ?>" 17 17 <?php do_action('atom_ns'); ?> 18 18 > 19 19 <title><?php bloginfo_rss('name') ?></title> 20 20 <link rel="alternate" type="text/html" href="<?php bloginfo_rss('home') ?>" /> 21 <tagline><?php bloginfo_rss("description") ?></tagline> 22 <modified><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_lastpostmodified('GMT'), false); ?></modified> 23 <copyright>Copyright <?php echo mysql2date('Y', get_lastpostdate('blog'), 0); ?></copyright> 24 <generator url="http://wordpress.org/" version="<?php bloginfo_rss('version'); ?>">WordPress</generator> 21 <link rel="self" type="application/atom+xml" href="<?php bloginfo('atom_url') ?>" /> 22 <subtitle><?php bloginfo_rss("description") ?></subtitle> 23 <updated><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_lastpostmodified('GMT'), false); ?></updated> 24 <rights>Copyright <?php echo mysql2date('Y', get_lastpostdate('blog'), 0); ?></rights> 25 <id><?php bloginfo('url') ?>/</id> 26 <generator uri="http://wordpress.org/" version="<?php bloginfo_rss('version'); ?>">WordPress</generator> 27 25 28 <?php do_action('atom_head'); ?> 29 26 30 <?php $items_count = 0; if ($posts) { foreach ($posts as $post) { start_wp(); ?> 27 31 <entry> 28 32 <author> 29 33 <name><?php the_author() ?></name> 30 34 </author> 31 <title type=" text/html" mode="escaped"><![CDATA[<?php the_title_rss() ?>]]></title>35 <title type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><![CDATA[<?php the_title_rss() ?>]]></div></title> 32 36 <link rel="alternate" type="text/html" href="<?php permalink_single_rss() ?>" /> 33 37 <id><?php the_guid(); ?></id> 34 <modified><?php echo get_post_time('Y-m-d\TH:i:s\Z', true); ?></modified> 35 <issued><?php echo get_post_time('Y-m-d\TH:i:s\Z', true); ?></issued> 38 <updated><?php echo get_post_time('Y-m-d\TH:i:s\Z', true); ?></updated> 36 39 <?php the_category_rss('rdf') ?> 37 <summary type=" text/plain" mode="escaped"><![CDATA[<?php the_excerpt_rss(); ?>]]></summary>40 <summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><![CDATA[<?php the_excerpt_rss(); ?>]]></div></summary> 38 41 <?php if ( !get_settings('rss_use_excerpt') ) : ?> 39 <content type=" <?php bloginfo('html_type'); ?>" mode="escaped" xml:base="<?php permalink_single_rss() ?>"><![CDATA[<?php the_content('', 0, '') ?>]]></content>42 <content type="xhtml" xml:base="<?php permalink_single_rss() ?>"><div xmlns="http://www.w3.org/1999/xhtml"><![CDATA[<?php the_content('', 0, '') ?>]]></div></content> 40 43 <?php endif; ?> 41 44 <?php rss_enclosure(); ?> 42 45 <?php do_action('atom_entry'); ?>