
Iniciado por
Michoacano
Hay muchos plugins pero también puedes hacerlo tu mismo. Creas una categoría llamada "relevantes" o "interesantes" y ahí vas a poner los post que quieres que salgan en el blogroll. Lo de la imagen que aparece es un campo personalizado. o "custom field".
El código del sidebar seria algo así.
<ul>
<?php $recent = new WP_Query("cat=1&showposts=10"); while($recent->have_posts()) : $recent->the_post();?>
<?
$thumb = get_post_meta($post->ID, 'Thumbnail', $single = true);
?>
<li><img src="<?=$thumb ?>" /><a href="<?php the_permalink() ?>" rel="bookmark">
<?php the_title(); ?>
</a></li>
<?php endwhile; ?>
</ul>