Ticket #37227: 37227-twentyfourteen.diff
File 37227-twentyfourteen.diff, 614 bytes (added by , 9 years ago) |
---|
-
twentyfourteen/functions.php
319 319 320 320 // If there is more than 1 attachment in a gallery... 321 321 if ( count( $attachment_ids ) > 1 ) { 322 foreach ( $attachment_ids as $ attachment_id ) {322 foreach ( $attachment_ids as $idx => $attachment_id ) { 323 323 if ( $attachment_id == $post->ID ) { 324 $next_id = current( $attachment_ids );324 $next_id = $attachment_ids[ ( $idx + 1 ) % count( $attachment_ids ) ]; 325 325 break; 326 326 } 327 327 }