mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-22 00:01:27 +01:00
added more = 1; to display all content in rss/rdf feeds
git-svn-id: http://svn.automattic.com/wordpress/trunk@400 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
616efa0eb9
commit
27aa1836c7
@ -78,7 +78,7 @@ if (!isset($rss_language)) { $rss_language = 'en'; }
|
||||
<dc:date><?php the_time('Y-m-d\TH:i:s'); ?></dc:date>
|
||||
<dc:creator><?php the_author() ?> (mailto:<?php the_author_email() ?>)</dc:creator>
|
||||
<dc:subject><?php the_category_rss() ?></dc:subject>
|
||||
<?php if ($rss_use_excerpt) {
|
||||
<?php $more = 1; if ($rss_use_excerpt) {
|
||||
?>
|
||||
<description><?php the_excerpt_rss($rss_excerpt_length, 2) ?></description>
|
||||
<?php
|
||||
|
@ -62,6 +62,7 @@ if (!isset($rss_excerpt_length) || ($rss_encoded_html == 1)) { $rss_excerpt_leng
|
||||
// we might use this in the future, but not now, that's why it's commented in PHP
|
||||
// so that it doesn't appear at all in the RSS
|
||||
// echo "<category>"; the_category_unicode(); echo "</category>";
|
||||
$more = 1;
|
||||
if ($rss_use_excerpt) {
|
||||
?>
|
||||
<description><?php the_excerpt_rss($rss_excerpt_length, $rss_encoded_html) ?></description>
|
||||
|
@ -74,7 +74,7 @@ if (!isset($rss_excerpt_length) || ($rss_encoded_html == 1)) { $rss_excerpt_leng
|
||||
<dc:creator><?php the_author() ?> (mailto:<?php the_author_email() ?>)</dc:creator>
|
||||
<dc:subject><?php the_category_rss() ?></dc:subject>
|
||||
<guid isPermaLink="false"><?php echo $id; ?>@<?php bloginfo_rss("url") ?></guid>
|
||||
<?php if ($rss_use_excerpt) {
|
||||
<?php $more = 1; if ($rss_use_excerpt) {
|
||||
?>
|
||||
<description><?php the_excerpt_rss($rss_excerpt_length, 2) ?></description>
|
||||
<?php
|
||||
|
Loading…
Reference in New Issue
Block a user