Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/09/2010, 14:45
American2010
 
Fecha de Ingreso: abril-2003
Mensajes: 1.129
Antigüedad: 21 años
Puntos: 34
Respuesta: Mostrar post aleatorios en tags y categorias

Hola, revisa si esto ayuda.

http://codex.wordpress.org/Template_Tags/get_posts

Esta parecería ser la solución.

Código PHP:
Ver original
  1. <ul><li><h2>A random selection of my writing</h2>
  2.     <ul>
  3.  <?php
  4.  $rand_posts = get_posts('numberposts=5&orderby=rand');
  5.  foreach( $rand_posts as $post ) :
  6.  ?>
  7.     <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
  8.  <?php endforeach; ?>
  9.     </ul>
  10.  </li></ul>

Simplemente habría que adaptarlo dentro del theme que uses, en el php que se encargue de leer los tags.
__________________
elGastronomo