Cześć,
1. Możesz użyć pluginu „Recent Posts Widget Extended”.
2. Możesz dopisać poniższy kod np. do pliku szablonu „sidebar.php”. Wyświetli Ci ikony ostatnich wpisów.
<li id="meta" class="widget-container">
<h3 class="widget-title"><?php _e( 'Recent Post', 'twentyten' ); ?></h3>
<?php
$the_query = new WP_Query('showposts=5&orderby=post_date&order=desc');
while ($the_query->have_posts()) : $the_query->the_post(); ?>
<div class="twentyten-latest-post">
<?php the_post_thumbnail(array(50,50), array ('class' => 'alignleft')); ?>
<a title="<?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
<div class="clear"></div>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</li>
Dziękuję bardzo udało się z widgetem!