Ver Mensaje Individual
  #1 (permalink)  
Antiguo 03/11/2014, 06:35
edn
 
Fecha de Ingreso: junio-2011
Mensajes: 126
Antigüedad: 12 años, 9 meses
Puntos: 8
Ultimos post de cada categoria (mapa del sitio)

Quiero hacer un mapa del sitio donde se muestren todas las categorías, pero que cada categoría vaya acompañada de los tres últimos post.

Buscando por ahí encontré el siguiente código pero sólo muestra a una categoría
Código PHP:
<?php $recent = new WP_Query(“cat=3&showposts=3&#8243;); while($recent->have_posts()) : $recent->the_post();?>
<a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a>
<br />
<?php the_excerpt(); ?>
<br />
<?php the_author_posts_link(); ?>
<br />
<?php comments_popup_link((0)(1)(%)); ?>
<br /><br />
<?php endwhile; ?>
Agradezco ayuda.