Ver Mensaje Individual
  #8 (permalink)  
Antiguo 11/07/2010, 14:50
Avatar de metacortex
metacortex
Viejo demente
 
Fecha de Ingreso: junio-2004
Ubicación: Caracas - Venezuela
Mensajes: 9.027
Antigüedad: 20 años, 5 meses
Puntos: 832
Respuesta: Posts relacionados aleatorios

Prueba así. Cambia esto

Código PHP:
Ver original
  1. $args = array(
  2.     'post__not_in' => array($post->ID),
  3.     'showposts'=>6, // Cantidad de entradas a mostrar.
  4.     'caller_get_posts'=>1
  5. );
  6. if($tags)
  7.     $args[] = array('tag__in' => $tag_ids);
por esto

Código PHP:
Ver original
  1. $args = array(
  2.     'showposts'=>6, // Cantidad de entradas a mostrar.
  3.     'caller_get_posts'=> 1
  4. );
  5. if($tags) $args[] = array('tag__in' => $tag_ids);
  6. else $args[] = 'post__not_in' => array($post->ID);