Full Text Feed 插件显示完整内容。。。。按照此处的安装步骤操作,然后转到设置->阅读->对于提要中的每一篇文章,显示=>选择全文并保存。这会有用的。如果您想通过代码手段实现,
<?php if (get_option(\'rss_use_excerpt\')) : ?>
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
<?php else : ?>
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
<?php if ( strlen( $post->post_content ) > 0 ) : ?>
<content:encoded><![CDATA[<?php the_content() ?>]]></content:encoded>
<?php else : ?>
<content:encoded><![CDATA[<?php the_excerpt_rss() ?>]]></content:encoded>
<?php endif; ?>
<?php endif; ?>