• Im using twenty ten. Love it aside from a couple of frustrations which im sure are me not the template…I just want my full post to show (not excerpts) in archives and categories…I’ve tried settings/reading/exerpt or full post option….i’m doing something wrong but what is it?

    My site is http://vindicatejulianassange.org/ I’ve removed the whole sidebar for now as my categories and archived bits look absolutely crap with excerpts. I need the full post to show. Thanks.

Viewing 1 replies (of 1 total)
  • open loop.php and at about line 104 replace these lines

    <?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?>
    			<div class="entry-summary">
    				<?php the_excerpt(); ?>
    			</div><!-- .entry-summary -->
    		<?php else : ?>
    			<div class="entry-content">
    				<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
    			</div><!-- .entry-content -->
    		<?php endif; ?>

    with

    <div class="entry-content">
    				<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
    			</div><!-- .entry-content -->

Viewing 1 replies (of 1 total)
  • The topic ‘Category will not show full posts only excerpts’ is closed to new replies.