|
@Ben,
If you look at line 132 of loop.php in Twentyten you will find the conditional statement that is telling WordPress to only display the_excerpt on category archives. Right below that after
is how all posts that aret on an archive page, in the asides category or in the gallery category will be displayed. (The asides and gallery categories are targeted at the beginning of loop.php)
→
', wentyten' ) ); ?>
'
' . __( 'Pages:', wentyten' ), 'after' =>
'
' ) ); ?>
In your loop-category.php file the easiest thing to do would be copy and paste the whole loop.php file and change the section of code above to:
→
', wentyten' ) ); ?>
'
' . __( 'Pages:', wentyten' ), 'after' =>
'
' ) ); ?>
You willtice that we only removed
is_archive
from the conditional statement sow category archives will displayed using the code after the else statement which contains
the_content
as opposed to
the_excerpt
.
|