5
我該怎麼讓我的WordPress的帖子的附件中的圖片?顯示附加的圖片張貼在WordPress的
我該怎麼讓我的WordPress的帖子的附件中的圖片?顯示附加的圖片張貼在WordPress的
在你的single.php模板試試這個:
$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;
非常感謝您的支持。 – fatihturan 2009-11-29 12:03:01
我開始認識到,沒有爲這個沒有漂亮的解決方案。 – ViniciusPires 2013-06-25 20:07:52