Show Attached Image to Post on Wordpress

2019-02-02 21:36发布

问题:

How i can show attached images of my posts on Wordpress?

回答1:

Try this in your single.php template:

$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;


回答2:

wp_get_attachment_image