|
Revision 2366, 1.3 kB
(checked in by ryan, 4 years ago)
|
Do not translate dates in feeds. http://mosquito.wordpress.org/view.php?id=924. Reviewed by morganiq.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
if (empty($feed)) { |
|---|
| 4 |
$blog = 1; |
|---|
| 5 |
$feed = 'rss'; |
|---|
| 6 |
$doing_rss = 1; |
|---|
| 7 |
require('wp-blog-header.php'); |
|---|
| 8 |
} |
|---|
| 9 |
|
|---|
| 10 |
header('Content-type: text/xml; charset=' . get_settings('blog_charset'), true); |
|---|
| 11 |
$more = 1; |
|---|
| 12 |
|
|---|
| 13 |
?> |
|---|
| 14 |
<?php echo '<?xml version="1.0" encoding="'.get_settings('blog_charset').'"?'.'>'; ?> |
|---|
| 15 |
<!-- generator="wordpress/<?php echo $wp_version ?>" --> |
|---|
| 16 |
<rss version="0.92"> |
|---|
| 17 |
<channel> |
|---|
| 18 |
<title><?php bloginfo_rss('name') ?></title> |
|---|
| 19 |
<link><?php bloginfo_rss('url') ?></link> |
|---|
| 20 |
<description><?php bloginfo_rss('description') ?></description> |
|---|
| 21 |
<lastBuildDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?></lastBuildDate> |
|---|
| 22 |
<docs>http://backend.userland.com/rss092</docs> |
|---|
| 23 |
<language><?php echo get_option('rss_language'); ?></language> |
|---|
| 24 |
|
|---|
| 25 |
<?php $items_count = 0; if ($posts) { foreach ($posts as $post) { start_wp(); ?> |
|---|
| 26 |
<item> |
|---|
| 27 |
<title><?php the_title_rss() ?></title> |
|---|
| 28 |
<?php if (get_settings('rss_use_excerpt')) { ?> |
|---|
| 29 |
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description> |
|---|
| 30 |
<?php } else { ?> |
|---|
| 31 |
<description><?php the_content_rss('', 0, '', get_settings('rss_excerpt_length')) ?></description> |
|---|
| 32 |
<?php } ?> |
|---|
| 33 |
<link><?php permalink_single_rss() ?></link> |
|---|
| 34 |
</item> |
|---|
| 35 |
<?php $items_count++; if (($items_count == get_settings('posts_per_rss')) && empty($m)) { break; } } } ?> |
|---|
| 36 |
</channel> |
|---|
| 37 |
</rss> |
|---|
| 38 |
|
|---|