Ver Mensaje Individual
  #9 (permalink)  
Antiguo 06/09/2009, 05:21
Avatar de trasgukabi
trasgukabi
 
Fecha de Ingreso: septiembre-2004
Mensajes: 2.749
Antigüedad: 20 años, 4 meses
Puntos: 18
Respuesta: ¿Random Entradas Y Ultimos Comentarios En Wordpress?

Cita:
Iniciado por JoseMoreno Ver Mensaje
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
Una cosa:
Donde pone:
Código PHP:
Ver original
  1. <div class="info"><a href="<?php the_permalink() ?> " rel="bookmark" class="title"> <?php the_title(); ?></a>
Debe poner
Código PHP:
Ver original
  1. <div class="info"><a href="<?php the_permalink() ?> " rel="bookmark" class="title"> <?php the_title(); ?></a></div>

Ya que si no el DIV se queda cojo.