Version Description
- Bug fix; tag cloud showed up empty after update from 1.3.12
Download this release
Release Info
Developer | exz |
Plugin | Ultimate Tag Cloud Widget |
Version | 1.3.14 |
Comparing to | |
See all releases |
Code changes from version 1.3.13 to 1.3.14
- readme.txt +14 -3
- screenshot-4.png +0 -0
- ultimate-tag-cloud-widget.php +3 -3
readme.txt
CHANGED
@@ -3,10 +3,10 @@ Contributors: exz
|
|
3 |
Tags: widget, tags, configurable, tag cloud
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.3
|
6 |
-
Stable tag: 1.3.
|
7 |
Donate link: https://flattr.com/thing/112193/Ultimate-Tag-Cloud-Widget
|
8 |
|
9 |
-
This plugin aims to be the most configurable tag cloud widget out there, able to suit all your
|
10 |
|
11 |
== Description ==
|
12 |
|
@@ -30,7 +30,7 @@ This is the highly configurable tag cloud widget, current version supports the f
|
|
30 |
* Separator, suffix and prefix for the tags
|
31 |
* Load/save configuration
|
32 |
|
33 |
-
This plugin is under active development and my goal is to try to help everyone who have issues or suggestions for this plugin. If you have issues please post them in the forums, if you have suggestions
|
34 |
|
35 |
== Installation ==
|
36 |
|
@@ -58,6 +58,9 @@ This is a new plugin, haven't had any questions yet. If you have any, be sure to
|
|
58 |
|
59 |
== Changelog ==
|
60 |
|
|
|
|
|
|
|
61 |
= 1.3.13 =
|
62 |
* Added setting to hide the title of the widget
|
63 |
* Custom post type support, replaces page tagging feature
|
@@ -146,6 +149,14 @@ This is a new plugin, haven't had any questions yet. If you have any, be sure to
|
|
146 |
|
147 |
== Upgrade Notice ==
|
148 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
= 1.3.12 =
|
150 |
|
151 |
* Minor bug fix and added support for saving/loading configurations.
|
3 |
Tags: widget, tags, configurable, tag cloud
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.3
|
6 |
+
Stable tag: 1.3.14
|
7 |
Donate link: https://flattr.com/thing/112193/Ultimate-Tag-Cloud-Widget
|
8 |
|
9 |
+
This plugin aims to be the most configurable tag cloud widget out there, able to suit all your weird tag cloud needs.
|
10 |
|
11 |
== Description ==
|
12 |
|
30 |
* Separator, suffix and prefix for the tags
|
31 |
* Load/save configuration
|
32 |
|
33 |
+
This plugin is under active development and my goal is to try to help everyone who have issues or suggestions for this plugin. If you have issues please post them in the forums, if you have suggestions most people use the comment system on my blog at http://0x539.se/wordpress/ultimate-tag-cloud-widget/. You're also always welcome to contact me by e-mail or Google Talk; rickard at 0x539.se
|
34 |
|
35 |
== Installation ==
|
36 |
|
58 |
|
59 |
== Changelog ==
|
60 |
|
61 |
+
= 1.3.14 =
|
62 |
+
* Bug fix; tag cloud showed up empty after update from 1.3.12
|
63 |
+
|
64 |
= 1.3.13 =
|
65 |
* Added setting to hide the title of the widget
|
66 |
* Custom post type support, replaces page tagging feature
|
149 |
|
150 |
== Upgrade Notice ==
|
151 |
|
152 |
+
= 1.3.14 =
|
153 |
+
|
154 |
+
* Bug fix; fixes problem with empty cloud after upgrade
|
155 |
+
|
156 |
+
= 1.3.13 =
|
157 |
+
|
158 |
+
* New features and internal optimizations and improvements
|
159 |
+
|
160 |
= 1.3.12 =
|
161 |
|
162 |
* Minor bug fix and added support for saving/loading configurations.
|
screenshot-4.png
CHANGED
Binary file
|
ultimate-tag-cloud-widget.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Ultimate tag cloud widget
|
4 |
Plugin URI: http://www.0x539.se/wordpress/ultimate-tag-cloud-widget/
|
5 |
Description: This plugin aims to be the most configurable tag cloud widget out there, able to suit all your wierd tag cloud needs.
|
6 |
-
Version: 1.3.
|
7 |
Author: Rickard Andersson
|
8 |
Author URI: http://www.0x539.se
|
9 |
License: GPLv2
|
@@ -592,7 +592,7 @@ function do_utcw($args) {
|
|
592 |
}
|
593 |
}
|
594 |
} else {
|
595 |
-
$post_type = array();
|
596 |
}
|
597 |
|
598 |
// Fallback values
|
@@ -878,7 +878,7 @@ function do_utcw($args) {
|
|
878 |
/** @var string $name */
|
879 |
/** @var string $separator */
|
880 |
|
881 |
-
if ($tags_left--
|
882 |
$separator = '';
|
883 |
}
|
884 |
|
3 |
Plugin Name: Ultimate tag cloud widget
|
4 |
Plugin URI: http://www.0x539.se/wordpress/ultimate-tag-cloud-widget/
|
5 |
Description: This plugin aims to be the most configurable tag cloud widget out there, able to suit all your wierd tag cloud needs.
|
6 |
+
Version: 1.3.14
|
7 |
Author: Rickard Andersson
|
8 |
Author URI: http://www.0x539.se
|
9 |
License: GPLv2
|
592 |
}
|
593 |
}
|
594 |
} else {
|
595 |
+
$post_type = array('post');
|
596 |
}
|
597 |
|
598 |
// Fallback values
|
878 |
/** @var string $name */
|
879 |
/** @var string $separator */
|
880 |
|
881 |
+
if ($tags_left-- <= 1) {
|
882 |
$separator = '';
|
883 |
}
|
884 |
|