En tu archivo category.php debe haber algo asi:
Código PHP:
<?php if(have_posts()): while(have_posts()): the_post(); ?>
<h3><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h3>
<?php the_content() ?>
<?php endwhile; else: ?>
//Algun codigo
<?php endif ?>
Y lo debes dejar asi:
Código PHP:
<?php if(have_posts()): while(have_posts()): the_post(); ?>
<h3><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h3>
<?php endwhile; else: ?>
//Algun codigo
<?php endif ?>
Así solo imprimes el título de cada post
Saludos.