Version Description
Download this release
Release Info
Developer | gagan0123 |
Plugin | Shortcode Widget |
Version | 1.0 |
Comparing to | |
See all releases |
Code changes from version 0.3 to 1.0
- index.php +2 -2
- readme.txt +17 -5
index.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://wordpress.org/extend/plugins/shortcode-widget/
|
|
5 |
Description: Adds a text-like widget that allows you to write shortcode in it. (Just whats missing in the default text widget)
|
6 |
Author: gagan0123
|
7 |
Author URI: http://gagan.pro/
|
8 |
-
Version: 0
|
9 |
Text Domain: shortcode-widget
|
10 |
License: GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
11 |
*/
|
@@ -28,4 +28,4 @@ add_shortcode('shortcode_widget_test', 'shortcode_widget_test_output');
|
|
28 |
function shortcode_widget_test_output($args){
|
29 |
return "It works";
|
30 |
}
|
31 |
-
?>
|
5 |
Description: Adds a text-like widget that allows you to write shortcode in it. (Just whats missing in the default text widget)
|
6 |
Author: gagan0123
|
7 |
Author URI: http://gagan.pro/
|
8 |
+
Version: 1.0
|
9 |
Text Domain: shortcode-widget
|
10 |
License: GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
11 |
*/
|
28 |
function shortcode_widget_test_output($args){
|
29 |
return "It works";
|
30 |
}
|
31 |
+
?>
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: gagan0123
|
3 |
Tags: Shortcode, Widget
|
4 |
Requires at least: 3.3
|
5 |
-
Tested up to:
|
6 |
-
Stable tag: 0
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -12,14 +12,26 @@ Adds a text-like widget that allows you to write shortcode in it.
|
|
12 |
== Description ==
|
13 |
|
14 |
Adds a text-like widget that allows you to write shortcode in it. (Just whats missing in the default text widget)
|
|
|
|
|
15 |
|
16 |
== Installation ==
|
17 |
|
18 |
1. Add the plugin's folder in the WordPress' plugin directory.
|
19 |
1. Activate the plugin.
|
20 |
1. You are now ready to use the Shortcode Widget from the Widgets section.
|
|
|
21 |
|
22 |
== Changelog ==
|
23 |
-
|
24 |
-
0.
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
Contributors: gagan0123
|
3 |
Tags: Shortcode, Widget
|
4 |
Requires at least: 3.3
|
5 |
+
Tested up to: 4.0
|
6 |
+
Stable tag: 1.0
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
12 |
== Description ==
|
13 |
|
14 |
Adds a text-like widget that allows you to write shortcode in it. (Just whats missing in the default text widget)
|
15 |
+
To test the widget you can add the widget and use the shortcode "[shortcode_widget_test]", it will display "It works" on the fronte
|
16 |
+
nd and this will confirm the widget does work.
|
17 |
|
18 |
== Installation ==
|
19 |
|
20 |
1. Add the plugin's folder in the WordPress' plugin directory.
|
21 |
1. Activate the plugin.
|
22 |
1. You are now ready to use the Shortcode Widget from the Widgets section.
|
23 |
+
1. To test the widget you can add the widget and use the shortcode "[shortcode_widget_test]", it will display "It works" on the frontend and this will confirm the widget does work.
|
24 |
|
25 |
== Changelog ==
|
26 |
+
|
27 |
+
= 0.1 =
|
28 |
+
* Added the shortcode widget
|
29 |
+
|
30 |
+
= 0.2 =
|
31 |
+
* Added translation support
|
32 |
+
|
33 |
+
= 0.3 =
|
34 |
+
* Added a shortcode for testing the plugin '[shortcode_widget_test]'
|
35 |
+
|
36 |
+
= 1.0 =
|
37 |
+
* Tested with WP 4.0
|