forked from mirror/_s
Better indentation of the images query in image.php. props @ashfame see #45
This commit is contained in:
parent
0d20442227
commit
1db4236e4c
|
@ -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;
|
||||||
|
|
Reference in New Issue