Skip to content

Instantly share code, notes, and snippets.

@mfields
Created February 8, 2012 07:16
Show Gist options
  • Select an option

  • Save mfields/1766417 to your computer and use it in GitHub Desktop.

Select an option

Save mfields/1766417 to your computer and use it in GitHub Desktop.
<?php
$images = get_children( array(
'post_parent' => get_the_ID(),
'post_type' => 'attachment',
'post_mime_type' => 'image',
'orderby' => 'menu_order',
'order' => 'ASC',
) );
if ( $images ) {
$image = array_shift( $images );
$first = wp_get_attachment_image( $image_id );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment