este es el codigo del "Category Template", tal vez tenga que editar algo aqui:
"
<?php get_header(); ?>
<div id="page">
<div class="pagecap"><?php _e('Categoría'); ?> <?php single_cat_title(''); ?></div>
<?php get_sidebar(); ?>
<div class="narrowcolumn">
<div class="maincol"><div class="maincol-padding">
<?php include(TEMPLATEPATH . '/rsssubscribe.php'); ?>
<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></h2>
<div class="entry">
<?php the_excerpt(); ?>
<!-- <?php trackback_rdf(); ?> -->
</div>
<div class="postmetadata">
<?php _e('Categoría'); ?> <?php the_category(', ') ?> </div>
</div>
<?php endwhile; ?>
<?php include (TEMPLATEPATH . '/browse.php'); ?>
<?php else : ?>
<div class="post">
<h2><?php _e('Sin éxito'); ?></h2>
<?php _e('Lo sentimos, no hay resultados para su búsqueda'); ?>
</div>
<?php endif; ?>
</div></div>
<?php include(TEMPLATEPATH . '/obar.php'); ?>
<?php get_footer(); ?>
"