Changeset 1038597
- Timestamp:
- 12/05/2014 03:27:03 AM (11 years ago)
- Location:
- masonry-post-gallery
- Files:
-
- 14 added
- 2 edited
-
tags/0.3.8.3b (added)
-
tags/0.3.8.3b/cactus-masonry-options.php (added)
-
tags/0.3.8.3b/close.png (added)
-
tags/0.3.8.3b/imagesloaded.pkgd.min.js (added)
-
tags/0.3.8.3b/lightbox.css (added)
-
tags/0.3.8.3b/lightbox.min.js (added)
-
tags/0.3.8.3b/loading.gif (added)
-
tags/0.3.8.3b/masonry-post-gallery.css (added)
-
tags/0.3.8.3b/masonry-post-gallery.php (added)
-
tags/0.3.8.3b/masonry.pkgd.min.js (added)
-
tags/0.3.8.3b/next.png (added)
-
tags/0.3.8.3b/prev.png (added)
-
tags/0.3.8.3b/readme.txt (added)
-
tags/0.3.8.3b/spin.min.js (added)
-
trunk/masonry-post-gallery.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
masonry-post-gallery/trunk/masonry-post-gallery.php
r1037024 r1038597 2 2 /** 3 3 * @package Cactus Masonry 4 * @version 0.3.8. 2b4 * @version 0.3.8.3b 5 5 */ 6 6 /* … … 8 8 * Plugin URI: http://cactuscomputers.com.au/masonry 9 9 * Description: A highly customizable masonry styled gallery of post thumbnails. Please refer to the <a href="http://cactuscomputers.com.au/masonry">plugin Home Page</a> for detailed instructions. 10 * Version: 0.3.8. 2b10 * Version: 0.3.8.3b 11 11 * Author: N. E - Cactus Computers 12 12 * Author URI: http://www.cactuscomputers.com.au/masonry … … 28 28 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 29 29 */ 30 $CM_version = "0.3.8. 2b";30 $CM_version = "0.3.8.3b"; 31 31 $a = null; 32 32 //Add Shortcode … … 388 388 global $post; 389 389 $output = ""; 390 $tit = trim( str_replace("'", "'",get_post_field("post_title",($post->ID), "display")));391 $excerpt = trim( str_replace("'", "'",get_post_field("post_excerpt",($post->ID), "display")));390 $tit = trim(wptexturize(get_post_field("post_title",($post->ID), "display"))); 391 $excerpt = trim(wptexturize(get_post_field("post_excerpt",($post->ID), "display"))); 392 392 $show_databox = (($a['display_post_titles'] && strlen($tit) > 0) || ($a['display_post_excerpts'] && strlen($excerpt) > 0)); 393 393 if(has_post_thumbnail()) -
masonry-post-gallery/trunk/readme.txt
r1037100 r1038597 5 5 Requires at least: 3.9.1 6 6 Tested up to: 4.0.1 7 Stable tag: 0.3.8. 2b7 Stable tag: 0.3.8.3b 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 63 63 64 64 == Changelog == 65 66 = 0.3.8.3b = 67 * A bug fix for an issue that stops posts with certain characters in their titles from appearing in the gallery. 65 68 66 69 = 0.3.8.2b = … … 245 248 == Upgrade Notice == 246 249 250 = 0.3.8.3b = 251 Upgrade to fix a bug that occurs when certain characters exist in a post's title. 252 247 253 = 0.3.8.2b = 248 254 Upgrade for some more robust default styling and documentation improvements. … … 338 344 8. A gallery with the following shortcode: [cactus-masonry width='250px' horizontal_spacing='20' vertical_spacing='20'] 339 345 340 Check out the [Cactus Masonry Website](http://cactuscomputers.com.au/masonry) to see the plugin in action! 341 342 346 347
Note: See TracChangeset
for help on using the changeset viewer.