Solucion Temporal
Utilice el siguiente codigo:
Código PHP:
<div id="recent-posts" class="clearfix">
<?php query_posts(array('orderby' => 'rand', 'showposts' => 10)); if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php include(TEMPLATEPATH . '/includes/entry.php'); ?>
<?php endwhile; ?>
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); }
else { ?>
<?php include(TEMPLATEPATH . '/includes/navigation.php'); ?>
<?php } ?>
<?php else : ?>
<?php include(TEMPLATEPATH . '/includes/no-results.php'); ?>
<?php endif; wp_reset_query(); ?>
</div>
Ahora puedo ver los post de forma aleatoria, pero lamentablemente, no muestra todos mis post.
Se cortan cuando llegan al limite (en el codigo que ven le puse 10) y no muestra el boton de "siguiente pagina" o "pagina anterior"