Better indentation of the images query in image.php. props @ashfame see #45

This commit is contained in:
Michael Fields 2012-12-28 17:48:34 -08:00
parent 0d20442227
commit 1db4236e4c
1 changed files with 8 additions and 1 deletions

View File

@ -49,7 +49,14 @@ get_header();
* Grab the IDs of all the image attachments in a gallery so we can get the URL of the next adjacent image in a gallery, * Grab the IDs of all the image attachments in a gallery so we can get the URL of the next adjacent image in a gallery,
* or the first image (if we're looking at the last image in a gallery), or, in a gallery of one, just the link to that image file * or the first image (if we're looking at the last image in a gallery), or, in a gallery of one, just the link to that image file
*/ */
$attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) ); $attachments = array_values( get_children( array(
'post_parent' => $post->post_parent,
'post_status' => 'inherit',
'post_type' => 'attachment',
'post_mime_type' => 'image',
'order' => 'ASC',
'orderby' => 'menu_order ID'
) ) );
foreach ( $attachments as $k => $attachment ) { foreach ( $attachments as $k => $attachment ) {
if ( $attachment->ID == $post->ID ) if ( $attachment->ID == $post->ID )
break; break;