Show Attached Image to Post on Wordpress

前端 未结 2 1716
甜味超标
甜味超标 2020-12-29 00:13

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

相关标签:
2条回答
  • 2020-12-29 00:39

    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;
    
    0 讨论(0)
  • 2020-12-29 01:03

    wp_get_attachment_image

    0 讨论(0)
提交回复
热议问题