显示附加图像在Wordpress上发布

fat*_*ran 5 wordpress loops attachment

我如何在Wordpress上显示我的帖子的附加图像?

Ada*_*sey 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;
Run Code Online (Sandbox Code Playgroud)