如何在 Wordpress 上显示我的帖子的附加图片?
问问题
8937 次
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
于 2009-11-29T11:28:32.343 回答