Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/01/2013, 19:06
tzec
 
Fecha de Ingreso: junio-2009
Mensajes: 8
Antigüedad: 14 años, 10 meses
Puntos: 0
Exclamación post relacionados no muestra imagen attatchment

tengo este codigo pero no me muestra las imagenes


Código:
<?php
 $orig_post = $post;
 global $post;
 $tags = wp_get_post_tags($post->ID);

 if ($tags) {
 $tag_ids = array();
 foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id;
 $args=array(
 'tag__in' => $tag_ids,
 'post__not_in' => array($post->ID),
 'posts_per_page'=>6, // Number of related posts to display.
 'caller_get_posts'=>1
 );

 $my_query = new wp_query( $args );



 while( $my_query->have_posts() ) {

 $my_query->the_post();

 ?>



<div id="thumbmasbuscado"><a href="<?php the_permalink()?>" class="tip" title="<?php the_title(); ?> "><?php wp_get_attachment_image( $attachment->ID, 'relacionados' ) ?></a></div>

   <? }

 }

 $post = $orig_post;

 wp_reset_query();

 ?>
espero su ayuda gracias