Version Description
Download this release
Release Info
| Developer | cbaldelomar |
| Plugin | |
| Version | 1.5 |
| Comparing to | |
| See all releases | |
Code changes from version 1.4 to 1.5
- README.md +4 -0
- readme.txt +4 -0
- wc-shortcodes.php +2 -1
README.md
CHANGED
|
@@ -44,6 +44,10 @@ Use the shortcode manager in the TinyMCE text editor
|
|
| 44 |
|
| 45 |
## Changelog ##
|
| 46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
### Version 1.4
|
| 48 |
|
| 49 |
* Fixed minor JS bugs
|
| 44 |
|
| 45 |
## Changelog ##
|
| 46 |
|
| 47 |
+
### Version 1.5
|
| 48 |
+
|
| 49 |
+
* prepended mailto to email addresses
|
| 50 |
+
|
| 51 |
### Version 1.4
|
| 52 |
|
| 53 |
* Fixed minor JS bugs
|
readme.txt
CHANGED
|
@@ -44,6 +44,10 @@ Use the shortcode manager in the TinyMCE text editor
|
|
| 44 |
|
| 45 |
== Changelog ==
|
| 46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
### Version 1.4
|
| 48 |
|
| 49 |
* Fixed minor JS bugs
|
| 44 |
|
| 45 |
== Changelog ==
|
| 46 |
|
| 47 |
+
### Version 1.5
|
| 48 |
+
|
| 49 |
+
* prepended mailto to email addresses
|
| 50 |
+
|
| 51 |
### Version 1.4
|
| 52 |
|
| 53 |
* Fixed minor JS bugs
|
wc-shortcodes.php
CHANGED
|
@@ -5,7 +5,7 @@ Plugin URI: http://wordpresscanvas.com/features/shortcodes/
|
|
| 5 |
Description: A family of shortcodes to enhance site functionality.
|
| 6 |
Author: Chris Baldelomar
|
| 7 |
Author URI: http://webplantmedia.com/
|
| 8 |
-
Version: 1.
|
| 9 |
License: GPLv2 or later
|
| 10 |
*/
|
| 11 |
|
|
@@ -15,6 +15,7 @@ define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
|
| 15 |
|
| 16 |
global $wc_shortcodes_options;
|
| 17 |
|
|
|
|
| 18 |
require_once( dirname(__FILE__) . '/includes/options.php' ); // define options array
|
| 19 |
require_once( dirname(__FILE__) . '/includes/settings.php' ); // Adds settings
|
| 20 |
require_once( dirname(__FILE__) . '/includes/scripts.php' ); // Adds plugin JS and CSS
|
| 5 |
Description: A family of shortcodes to enhance site functionality.
|
| 6 |
Author: Chris Baldelomar
|
| 7 |
Author URI: http://webplantmedia.com/
|
| 8 |
+
Version: 1.5
|
| 9 |
License: GPLv2 or later
|
| 10 |
*/
|
| 11 |
|
| 15 |
|
| 16 |
global $wc_shortcodes_options;
|
| 17 |
|
| 18 |
+
require_once( dirname(__FILE__) . '/includes/functions.php' ); // Adds basic filters and actions
|
| 19 |
require_once( dirname(__FILE__) . '/includes/options.php' ); // define options array
|
| 20 |
require_once( dirname(__FILE__) . '/includes/settings.php' ); // Adds settings
|
| 21 |
require_once( dirname(__FILE__) . '/includes/scripts.php' ); // Adds plugin JS and CSS
|
