Changeset 1084819
- Timestamp:
- 02/08/2015 06:43:26 AM (11 years ago)
- Location:
- jellyfish-backdrop/trunk
- Files:
-
- 2 edited
-
jellyfish-backdrop.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jellyfish-backdrop/trunk/jellyfish-backdrop.php
r1075116 r1084819 5 5 Description: Add fullscreen background images and background slideshows to any WordPress page element. 6 6 Author: Robert Miller <rob@strawberryjellyfish.com> 7 Version: 0.6. 77 Version: 0.6.8 8 8 Author URI: http://strawberryjellyfish.com/ 9 9 */ … … 31 31 public function __construct() { 32 32 if (!defined('JELLYFISH_BACKDROP_VERSION_NUM')) 33 define('JELLYFISH_BACKDROP_VERSION_NUM', '0.6. 1');33 define('JELLYFISH_BACKDROP_VERSION_NUM', '0.6.8'); 34 34 35 35 update_option('jellyfish_backdrop_version', JELLYFISH_BACKDROP_VERSION_NUM); … … 101 101 // look at post meta for image and slideshow data (override default) 102 102 $images = get_post_meta( get_the_ID(), '_jellyfish_backdrop_images', true ); 103 foreach ( $images as $arr ) { 104 array_push( $image_array, $arr['_jellyfish_backdrop_image']['url'] ); 103 if (is_array($images)) { 104 foreach ( $images as $arr ) { 105 array_push( $image_array, $arr['_jellyfish_backdrop_image']['url'] ); 106 } 105 107 } 106 108 -
jellyfish-backdrop/trunk/readme.txt
r1075116 r1084819 5 5 Plugin URI: http://strawberryjellyfish.com/wordpress-plugin-jellyfish-backdrop/ 6 6 Tags: background, fullscreen, gallery, slideshow, image 7 Requires at least: 3. 07 Requires at least: 3.5 8 8 Tested up to: 4.1 9 Stable tag: 0.6. 79 Stable tag: 0.6.8 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 106 106 == Changelog == 107 107 108 = 0.6.8 = 109 * Bugfix: Addresses "Invalid argument supplied for foreach()" warning when 110 post/page images were not defined 111 108 112 = 0.6.7 = 109 113 * Bugfix: Global settings were being overridden by post type settings when
Note: See TracChangeset
for help on using the changeset viewer.