Version Description
- Added admin notice for new Widget editor
- Fixed Some minor fixes
- Tested up to WordPress 6.0-beta1
Download this release
Release Info
Developer | iclyde |
Plugin | Enhanced Text Widget |
Version | 1.5.3 |
Comparing to | |
See all releases |
Code changes from version 1.5.4 to 1.5.3
- analyst/src/helpers.php +11 -0
- enhanced-text-widget.php +1 -1
- readme.txt +34 -14
analyst/src/helpers.php
CHANGED
@@ -71,3 +71,14 @@ if (! function_exists('analyst_require_template')) {
|
|
71 |
require analyst_templates_path($file);
|
72 |
}
|
73 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
require analyst_templates_path($file);
|
72 |
}
|
73 |
}
|
74 |
+
|
75 |
+
if (! function_exists('dd')) {
|
76 |
+
/**
|
77 |
+
* Dump some data
|
78 |
+
*/
|
79 |
+
function dd ()
|
80 |
+
{
|
81 |
+
var_dump(func_get_args());
|
82 |
+
die();
|
83 |
+
}
|
84 |
+
}
|
enhanced-text-widget.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Enhanced Text Widget
|
4 |
Plugin URI: http://wordpress.org/plugins/enhanced-text-widget/
|
5 |
Description: An enhanced version of the default text widget where you may have Text, HTML, CSS, JavaScript, Flash, Shortcodes, and/or PHP as content with linkable widget title.
|
6 |
-
Version: 1.5.
|
7 |
Author: Clever Widgets
|
8 |
Author URI: https://themecheck.info
|
9 |
Text Domain: enhanced-text-widget
|
3 |
Plugin Name: Enhanced Text Widget
|
4 |
Plugin URI: http://wordpress.org/plugins/enhanced-text-widget/
|
5 |
Description: An enhanced version of the default text widget where you may have Text, HTML, CSS, JavaScript, Flash, Shortcodes, and/or PHP as content with linkable widget title.
|
6 |
+
Version: 1.5.3
|
7 |
Author: Clever Widgets
|
8 |
Author URI: https://themecheck.info
|
9 |
Text Domain: enhanced-text-widget
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: cl272
|
|
3 |
Donate link: https://sellcodes.com/5U4SICyc
|
4 |
Tags: widget, clickable, linkable, linked title, text, php, javascript, flash, linked title text, linked, text widget, php widget, link widget title, bare widget, widget shortcodes, enhanced text, better text widget, simple, html widget, css
|
5 |
Requires at least: 3.6
|
6 |
-
Tested up to: 6.
|
7 |
-
Stable tag: 1.5.
|
8 |
License: MIT
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
@@ -12,8 +12,7 @@ An enhanced version of the text widget that supports Text, HTML, CSS, JavaScript
|
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
**Try it out on your free dummy site: Click here => [https://tastewp.com/plugins/enhanced-text-widget](https://
|
16 |
-
(this trick works for all plugins in the WP repo - just replace "wordpress" with "tastewp" in the URL)
|
17 |
|
18 |
Note: This is a **classic widget** type, in order for it to work on the latest version of WordPress you will need [Classic Widgets](https://wordpress.org/plugins/classic-widgets/) plugin installed on your site.
|
19 |
|
@@ -56,11 +55,38 @@ Nothing right now.
|
|
56 |
|
57 |
1. Widget options
|
58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
== Changelog ==
|
60 |
-
= 1.5.4 =
|
61 |
-
* Tested up to WordPress 6.1-RC5
|
62 |
-
* Updated try it out URL in readme to properly setup demo site
|
63 |
-
* Adjusted carrousel module
|
64 |
|
65 |
= 1.5.3 =
|
66 |
* Added admin notice for new Widget editor
|
@@ -135,9 +161,3 @@ Nothing right now.
|
|
135 |
|
136 |
= 1.0 =
|
137 |
* First release.
|
138 |
-
|
139 |
-
== Upgrade Notice ==
|
140 |
-
= 1.5.4 =
|
141 |
-
* Tested up to WordPress 6.1-RC5
|
142 |
-
* Updated try it out URL in readme
|
143 |
-
* Adjusted carrousel module
|
3 |
Donate link: https://sellcodes.com/5U4SICyc
|
4 |
Tags: widget, clickable, linkable, linked title, text, php, javascript, flash, linked title text, linked, text widget, php widget, link widget title, bare widget, widget shortcodes, enhanced text, better text widget, simple, html widget, css
|
5 |
Requires at least: 3.6
|
6 |
+
Tested up to: 6.0
|
7 |
+
Stable tag: 1.5.3
|
8 |
License: MIT
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
**Try it out on your free dummy site: Click here => [https://tastewp.com/plugins/enhanced-text-widget](https://tastewp.com/plugins/enhanced-text-widget)**
|
|
|
16 |
|
17 |
Note: This is a **classic widget** type, in order for it to work on the latest version of WordPress you will need [Classic Widgets](https://wordpress.org/plugins/classic-widgets/) plugin installed on your site.
|
18 |
|
55 |
|
56 |
1. Widget options
|
57 |
|
58 |
+
== Upgrade Notice ==
|
59 |
+
|
60 |
+
= 1.5.3 =
|
61 |
+
* Added admin notice for new Widget editor
|
62 |
+
* Fixed Some minor fixes
|
63 |
+
* Tested up to WordPress 6.0-beta1
|
64 |
+
|
65 |
+
= 1.5.2 =
|
66 |
+
* Tested up to WordPress 5.7.1
|
67 |
+
* Added support for PHP 8
|
68 |
+
* Updated banner
|
69 |
+
|
70 |
+
= 1.5.1 =
|
71 |
+
* Tested with new version of WordPress
|
72 |
+
* Updated Opt-in
|
73 |
+
|
74 |
+
= 1.5 =
|
75 |
+
* Fixed issue with not registered widget
|
76 |
+
|
77 |
+
= 1.3.4 =
|
78 |
+
This adds option to hide the title
|
79 |
+
|
80 |
+
= 1.2 =
|
81 |
+
This adds option to display bare text (no before/after widget/title elements are shown).
|
82 |
+
|
83 |
+
= 1.1 =
|
84 |
+
This adds a CSS class parameter to each widget.
|
85 |
+
|
86 |
+
= 1.0 =
|
87 |
+
This is the initial release.
|
88 |
+
|
89 |
== Changelog ==
|
|
|
|
|
|
|
|
|
90 |
|
91 |
= 1.5.3 =
|
92 |
* Added admin notice for new Widget editor
|
161 |
|
162 |
= 1.0 =
|
163 |
* First release.
|
|
|
|
|
|
|
|
|
|
|
|