2009-11-29 21 views

cevap

14

sizin single.php şablonunda bu deneyin:

$args = array(
'post_type' => 'attachment', 
'post_mime_type' => 'image', 
'post_parent' => $post->ID 
); 
$images = get_posts($args); 
foreach($images as $image): 
echo wp_get_attachment_image($image->ID, 'medium'); 
endforeach; 
+1

Teşekkür destek için çok. – fatihturan

+0

Bunun için güzel bir çözüm olmadığını fark etmeye başladım. – ViniciusPires