Puedes hacerlo sin usar plugins, simplemente con código
    
Código php:
Ver original- <h3>El título que quieras</h3> 
- <?php 
- query_posts (array('orderby' => 'rand', 'showposts' => 1));
- if (have_posts()) : 
- while (have_posts()) : the_post(); ?> 
- <div class="info"><a href="<?php the_permalink() ?> " rel="bookmark" class="title"> <?php the_title(); ?></a> 
- <?php the_excerpt(); endwhile; endif;?> 
y cambias el número 1 de esta parte    
por la cantidad de posts que quieras se muestren