Show Attached Image to Post on Wordpress

ぐ巨炮叔叔 提交于 2019-11-29 01:14:01

问题


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



来源:https://stackoverflow.com/questions/1815158/show-attached-image-to-post-on-wordpress

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!