Ver Mensaje Individual
  #5 (permalink)  
Antiguo 07/04/2009, 12:11
Avatar de JoseMoreno
JoseMoreno
 
Fecha de Ingreso: marzo-2009
Ubicación: Maldonado, Uruguay
Mensajes: 8
Antigüedad: 15 años, 1 mes
Puntos: 0
Respuesta: ¿Random Entradas Y Ultimos Comentarios En Wordpress?

Puedes hacerlo sin usar plugins, simplemente con código

Código php:
Ver original
  1. <h3>El título que quieras</h3>
  2. <?php
  3. query_posts(array('orderby' => 'rand', 'showposts' => 1));
  4. if (have_posts()) :
  5. while (have_posts()) : the_post(); ?>
  6. <div class="info"><a href="<?php the_permalink() ?> " rel="bookmark" class="title"> <?php the_title(); ?></a>
  7. <?php the_excerpt(); endwhile; endif;?>

y cambias el número 1 de esta parte

Código php:
Ver original
  1. query_posts(array('orderby' => 'rand', 'showposts' => 1));

por la cantidad de posts que quieras se muestren