WP Shortcode by MyThemeShop - Version 1.4.9

Version Description

  • Fixed shortcodes filter
Download this release

Release Info

Developer MyThemeShop
Plugin Icon 128x128 WP Shortcode by MyThemeShop
Version 1.4.9
Comparing to
See all releases

Code changes from version 1.4.8 to 1.4.9

Files changed (3) hide show
  1. readme.txt +4 -1
  2. tinymce/shortcodes.php +4 -1
  3. wp-shortcode.php +1 -1
readme.txt CHANGED
@@ -4,7 +4,7 @@ Creator's website link: http://mythemeshop.com/
4
  Tags: shortcodes, shortcode, shortcodes list, toggle shortcode, buttons, google map shortcode, youtube shortcode, vimeo shortcode, alert shortcode, notification shortcode, column shortcodes
5
  Requires at least: 3.0.1
6
  Tested up to: 4.9.1
7
- Stable tag: 1.4.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -65,6 +65,9 @@ Please disable all plugins and check if shortcode plugin is working properly. Th
65
 
66
  == Changelog ==
67
 
 
 
 
68
  = 1.4.8 =
69
  * Added filter to extend list of shortcodes
70
  * Minor fixes
4
  Tags: shortcodes, shortcode, shortcodes list, toggle shortcode, buttons, google map shortcode, youtube shortcode, vimeo shortcode, alert shortcode, notification shortcode, column shortcodes
5
  Requires at least: 3.0.1
6
  Tested up to: 4.9.1
7
+ Stable tag: 1.4.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
65
 
66
  == Changelog ==
67
 
68
+ = 1.4.9 =
69
+ * Fixed shortcodes filter
70
+
71
  = 1.4.8 =
72
  * Added filter to extend list of shortcodes
73
  * Minor fixes
tinymce/shortcodes.php CHANGED
@@ -361,5 +361,8 @@ $shortcodes = array(
361
  "description" => __("Add a tooltip that appears on hover. Possible values for direction(Cardinal) of bubble: nw | n | ne | w | e | sw | s | se", "wp-shortcode")
362
  )
363
  );
364
- echo "<script type=\"text/javascript\">var shortcodes = ".json_encode( apply_filters( 'mts_wp_shortcode_list', $shortcodes ) ).";</script>";
 
 
 
365
  ?>
361
  "description" => __("Add a tooltip that appears on hover. Possible values for direction(Cardinal) of bubble: nw | n | ne | w | e | sw | s | se", "wp-shortcode")
362
  )
363
  );
364
+
365
+ $shortcodes = apply_filters( 'mts_wp_shortcode_list', $shortcodes );
366
+ echo "<script type=\"text/javascript\">var shortcodes = ".json_encode( $shortcodes ).";</script>";
367
+
368
  ?>
wp-shortcode.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Shortcode by MyThemeShop
4
  Plugin URI: http://mythemeshop.com/
5
  Description: With the vast array of shortcodes, you can quickly and easily build content for your posts and pages and turbocharge your blogging experience.
6
  Author: MyThemeShop
7
- Version: 1.4.8
8
  Author URI: http://mythemeshop.com/
9
  */
10
 
4
  Plugin URI: http://mythemeshop.com/
5
  Description: With the vast array of shortcodes, you can quickly and easily build content for your posts and pages and turbocharge your blogging experience.
6
  Author: MyThemeShop
7
+ Version: 1.4.9
8
  Author URI: http://mythemeshop.com/
9
  */
10