How to get Images included in Post

is possible to get images added to a post programmatically? I am working on custom template (my first) and I need to display Images added to a post in specific way.(first image as title image and the rest of imgs only render into hidden img tags (will be visible through lightbox slideshow).

So is there any function like get_post_attachments('type'=>'image') whose output I would be able to iterate over a loop?

Read More

Thanks for your help

Related posts

Leave a Reply

2 comments

  1. This gets all the images attached to a post :

    $args = array( 'post_type' => 'attachment', 'numberposts' => -1, 'post_status' => null, 'post_mime_type' => 'image', 'post_parent' => $post->ID ); 
    $attachments = get_posts( $args );
    if ( $attachments ) {
        foreach ( $attachments as $attachment ) {
        ...do stuff
        }
    }
    

    Have a ’look at wp_get_attachment_image()’ as well as the related functions, it’ll get you started.