Remove author element in order to keep our commitment to never reveal email addresses.
git-svn-id: http://svn.automattic.com/wordpress/trunk@1098 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1127059a99
commit
ecdd48e62a
|
@ -5,10 +5,13 @@ if (! $feed) {
|
||||||
require('wp-blog-header.php');
|
require('wp-blog-header.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$charset = get_settings('blog_charset');
|
||||||
|
if (!$charset) $charset = 'UTF-8';
|
||||||
header('Content-type: application/rss+xml', true);
|
header('Content-type: application/rss+xml', true);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<?php echo '<?xml version="1.0" encoding="'.get_settings('blog_charset').'"?'.'>'; ?>
|
<?php echo '<?xml version="1.0" encoding="' . $charset . '"?'.'>'; ?>
|
||||||
|
|
||||||
<!-- generator="wordpress/<?php echo $wp_version ?>" -->
|
<!-- generator="wordpress/<?php echo $wp_version ?>" -->
|
||||||
<rss version="2.0"
|
<rss version="2.0"
|
||||||
xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
||||||
|
@ -28,9 +31,8 @@ header('Content-type: application/rss+xml', true);
|
||||||
<link><?php permalink_single_rss() ?></link>
|
<link><?php permalink_single_rss() ?></link>
|
||||||
<comments><?php comments_link(); ?></comments>
|
<comments><?php comments_link(); ?></comments>
|
||||||
<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', $post->post_date_gmt); ?></pubDate>
|
<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', $post->post_date_gmt); ?></pubDate>
|
||||||
<author><?php the_author() ?> (mailto:<?php the_author_email() ?>)</author>
|
|
||||||
<?php the_category_rss() ?>
|
<?php the_category_rss() ?>
|
||||||
<guid isPermaLink="false"><?php echo $id; ?>@<?php bloginfo_rss("url") ?></guid>
|
<guid><?php echo get_permalink($id); ?></guid>
|
||||||
<?php $more = 1; if (get_settings('rss_use_excerpt')) {
|
<?php $more = 1; if (get_settings('rss_use_excerpt')) {
|
||||||
?>
|
?>
|
||||||
<description><?php the_excerpt_rss(get_settings('rss_excerpt_length'), 2) ?></description>
|
<description><?php the_excerpt_rss(get_settings('rss_excerpt_length'), 2) ?></description>
|
||||||
|
|
Loading…
Reference in New Issue