Skip to content

Instantly share code, notes, and snippets.

@quagliato
Last active December 22, 2015 12:08
Show Gist options
  • Save quagliato/6469892 to your computer and use it in GitHub Desktop.
Save quagliato/6469892 to your computer and use it in GitHub Desktop.
Iterate all images of a post
<?php
$images = get_posts(
array(
'post_type' => 'attachment',
'post_parent' => get_the_ID(),
'exclude' => get_post_thumbnail_id() // to exclude the featured image
)
);
foreach($images as $image){
$img_url = wp_get_attachment_link($image->ID, '<size>', true);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment