Changeset 28585
- Timestamp:
- 05/27/2014 10:54:54 AM (10 years ago)
- Location:
- trunk/src/wp-content/themes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/image.php
r25746 r28585 58 58 break; 59 59 } 60 $k++; 60 61 61 // If there is more than 1 attachment in a gallery 62 62 if ( count( $attachments ) > 1 ) { 63 $k++; 63 64 if ( isset( $attachments[ $k ] ) ) 64 65 // get the URL of the next image attachment -
trunk/src/wp-content/themes/twentyten/loop-attachment.php
r28463 r28585 72 72 break; 73 73 } 74 $k++; 74 75 75 // If there is more than 1 image attachment in a gallery 76 76 if ( count( $attachments ) > 1 ) { 77 $k++; 77 78 if ( isset( $attachments[ $k ] ) ) 78 79 // get the URL of the next image attachment -
trunk/src/wp-content/themes/twentytwelve/image.php
r25746 r28585 59 59 endforeach; 60 60 61 $k++;62 61 // If there is more than 1 attachment in a gallery 63 62 if ( count( $attachments ) > 1 ) : 63 $k++; 64 64 if ( isset( $attachments[ $k ] ) ) : 65 65 // get the URL of the next image attachment
Note: See TracChangeset
for help on using the changeset viewer.