Ahora que lo veo mejor, yo en mi blog lo implemento, aunque no sabría decirte cómo hacerlo, muestro las últimas entradas de una categoría, sería cuestión de ponerlo para varias categorías, y cambiarle el CSS:
<?php $the_query = new WP_Query('category_name=NombreCategoria&showposts=5');
while ($the_query->have_posts()) : $the_query->the_post(); ?>
<div>
<?php
if(has_post_thumbnail()) {
the_post_thumbnail(array(75,75), array ('class' => ‘alignleft’));
} else {
echo '<a title="' . esc_attr( get_post_field( 'post_title', $post_id ) ) . '" href="' . get_permalink( $post_id ) . '"><img style="margin-left: 0px; padding: 0px; width: 75px; height: 75px; float: left;" alt="' . esc_attr( get_post_field( 'post_title', $post_id ) ) . '" class="attachment-thumbnail" src="' . get_bloginfo('template_directory') . '/images/defecto.jpg" /></a>';
} ?>
<p><a title="<?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></p>
<p>Por <?php the_author_posts_link(); ?><br><?php comments_popup_link(__('Sin comentarios'), __('1 Comentario'), __('% Comentarios')); ?></p>
<div class="clear"></div>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
Eso muestra una thumbnail, junto con el título de la entrada, los comentarios y el autor.
Tendrías que agregarle css, y ponerle la descripción.