salve,
i am using the latest wp version 2.8.5.
wordpress installation is 2 weeks ago.
my rss url: http://webmove.org/feed/rss
single page contains images.
no summary, full text!
any idea?
ping; dan
this is the loop from my feed-rss.php
<?php while (have_posts()) : the_post(); ?>
<item>
<title><?php the_title_rss() ?></title>
<?php if (get_option('rss_use_excerpt')) { ?>
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
<?php } else { // use content ?>
<description><?php the_content_rss('', 0, '', get_option('rss_excerpt_length')) ?></description>
<?php } ?>
<link><?php the_permalink_rss() ?></link>
<?php do_action('rss_item'); ?>
</item>
<?php endwhile; ?>