开发者

Show Attached Image to Post on Wordpress

开发者 https://www.devze.com 2022-12-12 23:32 出处:网络
How i can show atta开发者_JAVA百科ched images of my posts on Wordpress?Try this in your single.php template:

How i can show atta开发者_JAVA百科ched images of my posts on Wordpress?


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;


wp_get_attachment_image

0

精彩评论

暂无评论...
验证码 换一张
取 消