5

Wordpress で投稿の添付画像を表示するにはどうすればよいですか?

4

2 に答える 2

14

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;
于 2009-11-29T11:28:53.553 に答える
1

wp_get_attachment_image

于 2009-11-29T11:28:32.343 に答える