Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    Looks like your theme is using both the_excerpt() and the_content() in the single.php file. Just remove the_excerpt() from the file.

    Thread Starter 763438

    I see only:

    <?php get_header(); ?>
    
    	<div id="content" class="narrowcolumn">
    
      <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    
    		<div class="post" id="post-<?php the_ID(); ?>">
    			<ul class="date">
    			<li class="day"><?php the_time('d') ?></li>
    			<li class="month"><?php the_time('M') ?></li>
    			</ul>
    			<ul class="title">
    			<li class="topic"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanente link naar <?php the_title(); ?>"><?php the_title(); ?></a></li>
    			<li class="postmeta">Gepost door <?php the_author() ?>. Geplaatst onder <?php the_category(', ') ?>. <?php edit_post_link('Bewerken'); ?></li>
    			</ul>
    
    			<div class="clear"></div>
    				<?php the_content('<p class="serif">Lees de rest van dit bericht &raquo;</p>'); ?>
    			<div class="entry">
    
    				<?php link_pages('<p><strong>Pagina's:</strong> ', '</p>', 'number'); ?>
    
    				<p class="meta">
    					<small>
    						<?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
    							// Both Comments and Pings are open ?>
    							&raquo; U kunt een <a href="#respond">reactie achterlaten</a>, of het bericht <a href="<?php trackback_url(true); ?>" rel="trackback">volgen</a> vanaf uw eigen site.
    
    						<?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
    							// Only Pings are Open ?>
    							&raquo; Reacties zijn momenteel niet mogelijk, maar u kunt het bericht <a href="<?php trackback_url(true); ?> " rel="trackback">volgen</a> vanaf uw eigen site.
    
    						<?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
    							// Comments are open, Pings are not ?>
    							&raquo; U kunt naar het einde van het bericht gaan en een reactie achterlaten. "Pings" zijn momenteel niet toegestaan.
    
    						<?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
    							// Neither Comments, nor Pings are open ?>
    							&raquo; Zowel reacties als "pings" zijn momenteel niet toegestaan.
    
    						<?php } edit_post_link('Bewerk dit bericht.','',''); ?>
    
    					</small>
    				</p>
    
    			</div>
    		</div>
    
    	<?php comments_template(); ?>
    
    	<?php endwhile; else: ?>
    
    		<p>Sorry, geen berichten komen overeen met uw criteria</p>
    
    <?php endif; ?>
    
    	</div>
    
    <?php get_sidebar(); ?>
    
    <?php get_footer(); ?>

    No excerpt in this file…

    Thread Starter 763438

    I think feed-rss.php:

    <?php if (get_option('rss_use_excerpt')) { ?>
    		<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
    Thread Starter 763438

    hmm it isn’t..

    Hope someone can help me..

    How are you syncing the RSS feed from one site to another?

    Are you using any plugins? What happens if you switch them off?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Problems with RSS’ is closed to new replies.