Changeset 1277000
- Timestamp:
- 10/31/2015 05:03:42 PM (10 years ago)
- Location:
- wp-joomag/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
wp-joomag.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-joomag/trunk/readme.txt
r1016923 r1277000 56 56 57 57 We've rewrited the plugin. Now it's using the WordPress Shortcode API. 58 59 `Version 2.5.0` 60 61 This version includes theme support. -
wp-joomag/trunk/wp-joomag.php
r1016923 r1277000 12 12 Description: Embed Joomag publications inside a post 13 13 Author: Joomag. 14 Version: 2. 014 Version: 2.5.0 15 15 Author URI: http://www.joomag.com 16 16 … … 30 30 'toolbar' => '', 31 31 'autoflip' => '', 32 'autofit'=> 'false' 32 'autofit'=> 'false', 33 'theme' => '' 33 34 ), $attributes ) 34 35 ); … … 58 59 break; 59 60 } 61 } elseif ( $theme != '') { 62 array_push($embedOpts, "theme,{$theme}"); 60 63 } else { 61 64 array_push($embedOpts, ''); … … 80 83 $embedOptsStr = '&embedInfo=' . implode(';', $embedOpts); 81 84 if( is_numeric($autoflip) ) { 82 $embedOptsStr .= "&auto flipDelay={$autoflip}";85 $embedOptsStr .= "&autoFlipDelay={$autoflip}"; 83 86 } 84 87
Note: See TracChangeset
for help on using the changeset viewer.