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″); 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.