Mi loop en category.php es así
Código PHP:
Ver original
<?php query_posts($query_string . '&cat='); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <article class="pre"> <header class="pre_header"> <h1 class="pre_h1"> <a class="pre_h1_a" href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"> <?php the_title(); ?> </a> </h1> </header> <div class="pre_contenido"> <div class="imagen-destacada"> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"> <?php the_post_thumbnail(); ?> </a> </div> </div> </article> <!-- Detener el loop --> <?php endwhile; else: ?> <p><?php _e('<div class="ups"><p>Ups! no se encontro nada</p></div>'); ?></p> <?php endif; ?
Creo que el problema esta en la primer linea <?php query_posts($query_string . '&cat='); ?>. ¿Alguien me puede dar una mano? Desde ya gracias.