Problemas de visualización en tags y categorías

  • Autor Autor webbber
  • Fecha de inicio Fecha de inicio
W

webbber

Préstamo
Xi
Redactor
hola
tengo un problema con las entradas cuanto se ven mis posts por tags y categorias en este blog, en el index toda esta bien, pero al hacer click en una tag del sidebar y me lleva a los resultados, no se muestran bien.
Mi codigo de tags y category.php es este:

<?php
get_header();
?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="postindex" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink();?>"><?php
the_title(); ?></a></h2>
<?php the_excerpt(); ?>
</div>

<?php endwhile; else: ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>

<div class="alignleft"><?php next_posts_link('&laquo; previous') ?></div>
<div class="alignright"><?php previous_posts_link('next &raquo;') ?></div>

<?php get_footer(); ?>
Lo que quiero es que las entradas en tags y category se vean diferentes a como esta en el index.. Solo quiero el titulo y un excerpt.
alguien ??
 
Atrás
Arriba