Changeset 368028
- Timestamp:
- 04/01/2011 08:19:18 PM (15 years ago)
- Location:
- galleria-galleria/trunk
- Files:
-
- 2 edited
-
galleria-galleria.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
galleria-galleria/trunk/galleria-galleria.php
r367769 r368028 4 4 Plugin URI: 5 5 Description: Transform standard WordPress galleries into galleria slideshows. 6 Version: 0.1 6 Version: 0.1.1 7 7 Author: Sam Margulies 8 8 Author URI: … … 449 449 } 450 450 451 echo"<div class='galleria-gallery' $style>";452 echogallery_shortcode($attr);453 echo'</div><!-- end .galleria-gallery -->';451 $content = "<div class='galleria-gallery' $style>"; 452 $content .= gallery_shortcode($attr); 453 $content .= '</div><!-- end .galleria-gallery -->'; 454 454 455 455 //remove our action to avoid changing this behavior for others 456 456 remove_action('wp_get_attachment_link', 'galleria_galleria_get_attachment_link', 2, 6); 457 458 return $content; 457 459 } 458 460 -
galleria-galleria/trunk/readme.txt
r367769 r368028 5 5 Requires at least: 3.0 6 6 Tested up to: 3.1 7 Stable tag: 0.1 7 Stable tag: 0.1.1 8 8 9 9 Transform standard WordPress galleries into galleria slideshows. … … 33 33 == Changelog == 34 34 35 = Version 0.1.1 = 36 Display gallery where it is embedded instead of at the top of the post. 37 35 38 = Version 0.1 = 36 39 Initial commit
Note: See TracChangeset
for help on using the changeset viewer.