Acá te explica un poco al respecto
http://codex.wordpress.org/Category_Templates
Un ejemplo sencillo de category.php sería algo asi:
Código PHP:
<?php get_header(); ?>
<div id="content">
<h2><?php single_cat_title('Categoría: ','TRUE'); ?></h2>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Link Permanente a'); ?><?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php the_excerpt(); ?>
<?php endwhile; ?>
<?php else : ?>
<h2>No Encontrado</h2>
<p>Lo siento, lo que estás buscando fue movido de ubicación. </p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>