Changeset 891381
- Timestamp:
- 04/11/2014 02:54:13 PM (12 years ago)
- Location:
- gallery-slideshow
- Files:
-
- 6 edited
-
tags/1.3.1/gss_html.php (modified) (1 diff)
-
tags/1.3.1/readme.txt (modified) (1 diff)
-
tags/1.3/gss_html.php (modified) (1 diff)
-
tags/1.3/readme.txt (modified) (2 diffs)
-
trunk/gss_html.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gallery-slideshow/tags/1.3.1/gss_html.php
r889462 r891381 15 15 foreach( $ids as $image_id ){ 16 16 $attachment = get_post( $image_id, 'ARRAY_A' ); 17 $src = $attachment['guid'];17 $src = wp_get_attachment_image_src( $image_id, 'full' ); 18 18 $excerpt = htmlspecialchars($attachment['post_excerpt']); 19 $slides .= "\n\t\t\t<img src=\"$src \" alt=\"$excerpt\" />\n";19 $slides .= "\n\t\t\t<img src=\"$src[0]\" alt=\"$excerpt\" />\n"; 20 20 if( !empty($carousel) ){ 21 $carousel_slides .= "\t\t\t<div><img src=\"$src \" title=\"$excerpt\" /></div>\n";21 $carousel_slides .= "\t\t\t<div><img src=\"$src[0]\" title=\"$excerpt\" /></div>\n"; 22 22 } 23 23 if( strlen( $attachment['post_excerpt'] ) > $longest_cap['length'] ){ -
gallery-slideshow/tags/1.3.1/readme.txt
r890215 r891381 86 86 87 87 = 1.3.1 = 88 Fixed header bug from version 1.3 uploaded to WordPress. 89 90 = 1.3.1 = 88 91 * Fixed header bug from version 1.3 uploaded to WordPress. 89 92 90 93 = 1.3 = 91 94 * Added carousel pager (thumbnails) and embed functionalities. 92 93 95 94 96 = 1.2 = -
gallery-slideshow/tags/1.3/gss_html.php
r889477 r891381 15 15 foreach( $ids as $image_id ){ 16 16 $attachment = get_post( $image_id, 'ARRAY_A' ); 17 $src = $attachment['guid'];17 $src = wp_get_attachment_image_src( $image_id, 'full' ); 18 18 $excerpt = htmlspecialchars($attachment['post_excerpt']); 19 $slides .= "\n\t\t\t<img src=\"$src \" alt=\"$excerpt\" />\n";19 $slides .= "\n\t\t\t<img src=\"$src[0]\" alt=\"$excerpt\" />\n"; 20 20 if( !empty($carousel) ){ 21 $carousel_slides .= "\t\t\t<div><img src=\"$src \" title=\"$excerpt\" /></div>\n";21 $carousel_slides .= "\t\t\t<div><img src=\"$src[0]\" title=\"$excerpt\" /></div>\n"; 22 22 } 23 23 if( strlen( $attachment['post_excerpt'] ) > $longest_cap['length'] ){ -
gallery-slideshow/tags/1.3/readme.txt
r889477 r891381 85 85 == Changelog == 86 86 87 = 1.3.1 = 88 Fixed header bug from version 1.3 uploaded to WordPress. 89 87 90 = 1.3 = 88 91 * Added carousel pager (thumbnails) and embed functionalities. 89 90 92 91 93 = 1.2 = … … 100 102 == Upgrade Notice == 101 103 104 = 1.3.1 = 105 Fixed header bug from version 1.3 uploaded to WordPress. 106 102 107 = 1.3 = 103 108 Plugin now supports carousel pager (thumbnails) navigation and embed functionality (experimental). -
gallery-slideshow/trunk/gss_html.php
r889462 r891381 15 15 foreach( $ids as $image_id ){ 16 16 $attachment = get_post( $image_id, 'ARRAY_A' ); 17 $src = $attachment['guid'];17 $src = wp_get_attachment_image_src( $image_id, 'full' ); 18 18 $excerpt = htmlspecialchars($attachment['post_excerpt']); 19 $slides .= "\n\t\t\t<img src=\"$src \" alt=\"$excerpt\" />\n";19 $slides .= "\n\t\t\t<img src=\"$src[0]\" alt=\"$excerpt\" />\n"; 20 20 if( !empty($carousel) ){ 21 $carousel_slides .= "\t\t\t<div><img src=\"$src \" title=\"$excerpt\" /></div>\n";21 $carousel_slides .= "\t\t\t<div><img src=\"$src[0]\" title=\"$excerpt\" /></div>\n"; 22 22 } 23 23 if( strlen( $attachment['post_excerpt'] ) > $longest_cap['length'] ){ -
gallery-slideshow/trunk/readme.txt
r890215 r891381 91 91 * Added carousel pager (thumbnails) and embed functionalities. 92 92 93 94 93 = 1.2 = 95 94 * Added 'options' shortcode attribute for customized slideshows; default display changes (css); more robust Javascript functions including recentering of images after window load.
Note: See TracChangeset
for help on using the changeset viewer.