Accordion Shortcodes - Version 1.2.4

Version Description

  • Compatibility with WordPress 3.9
Download this release

Release Info

Developer philbuchanan
Plugin Icon 128x128 Accordion Shortcodes
Version 1.2.4
Comparing to
See all releases

Code changes from version 1.2.3 to 1.2.4

Files changed (2) hide show
  1. accordion-shortcodes.php +2 -2
  2. readme.txt +9 -3
accordion-shortcodes.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: Accordion Shortcodes
4
  * Description: Adds a few shortcodes to allow for accordion dropdowns.
5
- * Version: 1.2.3
6
  * Author: Phil Buchanan
7
  * Author URI: http://philbuchanan.com
8
  */
@@ -47,7 +47,7 @@ class Accordion_Shortcodes {
47
  static function register_script() {
48
 
49
  $min = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min';
50
- wp_register_script('accordion-shortcodes-script', plugins_url('accordion' . $min . '.js', __FILE__), array('jquery'), '1.2.3', true);
51
 
52
  }
53
 
2
  /**
3
  * Plugin Name: Accordion Shortcodes
4
  * Description: Adds a few shortcodes to allow for accordion dropdowns.
5
+ * Version: 1.2.4
6
  * Author: Phil Buchanan
7
  * Author URI: http://philbuchanan.com
8
  */
47
  static function register_script() {
48
 
49
  $min = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min';
50
+ wp_register_script('accordion-shortcodes-script', plugins_url('accordion' . $min . '.js', __FILE__), array('jquery'), '1.2.4', true);
51
 
52
  }
53
 
readme.txt CHANGED
@@ -4,8 +4,8 @@ Author URI: http://philbuchanan.com/
4
  Donate Link: http://philbuchanan.com/
5
  Tags: accordion, accordions, shortcodes
6
  Requires at least: 3.3
7
- Tested up to: 3.8
8
- Stable tag: 1.2.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -14,7 +14,7 @@ Adds a few shortcodes to allow for accordion drop-downs.
14
  == Description ==
15
  Adds a few shortcodes to allow for accordion drop-downs.
16
 
17
- **NOTE:** If you are not comfortable with WordPress shortcodes, this plugin may not be for you.
18
 
19
  = Features =
20
 
@@ -125,6 +125,9 @@ You can also set the HTML tag for the titles of each item by added `tag="tagname
125
  For bug reports or feature requests or if you'd like to contribute to the plugin you can check everything out on [Github](https://github.com/philbuchanan/Accordion-Shortcodes/).
126
 
127
  == Changelog ==
 
 
 
128
  = 1.2.3 =
129
  * Added the shortcode parameter when calling shortcode_atts()
130
 
@@ -172,6 +175,9 @@ For bug reports or feature requests or if you'd like to contribute to the plugin
172
  * Initial release
173
 
174
  == Upgrade Notice ==
 
 
 
175
  = 1.2.3 =
176
  Added the shortcode parameter when calling shortcode_atts().
177
 
4
  Donate Link: http://philbuchanan.com/
5
  Tags: accordion, accordions, shortcodes
6
  Requires at least: 3.3
7
+ Tested up to: 3.9
8
+ Stable tag: 1.2.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
14
  == Description ==
15
  Adds a few shortcodes to allow for accordion drop-downs.
16
 
17
+ **IMPORTANT:** If you are not comfortable with WordPress shortcodes, this plugin may not be for you. Additionally, you may want to be able to edit your themes main stylesheet in order to [add some custom CSS](http://wordpress.org/plugins/accordion-shortcodes/other_notes/#Other-Notes).
18
 
19
  = Features =
20
 
125
  For bug reports or feature requests or if you'd like to contribute to the plugin you can check everything out on [Github](https://github.com/philbuchanan/Accordion-Shortcodes/).
126
 
127
  == Changelog ==
128
+ = 1.2.4 =
129
+ * Compatibility with WordPress 3.9
130
+
131
  = 1.2.3 =
132
  * Added the shortcode parameter when calling shortcode_atts()
133
 
175
  * Initial release
176
 
177
  == Upgrade Notice ==
178
+ = 1.2.4 =
179
+ Compatibility with WordPress 3.9.
180
+
181
  = 1.2.3 =
182
  Added the shortcode parameter when calling shortcode_atts().
183