/ Published in: PHP
Short php snippit to get all images that are attached to a post or page in wordpress.
Need to mod to only get gallery images.
Need to mod to only get gallery images.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php $attachments = get_children( array('post_parent' => get_the_ID(), 'post_type' => 'attachment', 'post_mime_type' =>'image') ); foreach ( $attachments as $attachment_id => $attachment ) { echo wp_get_attachment_image( $attachment_id, 'medium' ); } ?>