Changeset 3056242
- Timestamp:
- 03/21/2024 03:49:18 PM (2 years ago)
- Location:
- tilted-tag-cloud-widget
- Files:
-
- 4 added
- 1 deleted
- 2 edited
-
tags/1.3.18 (deleted)
-
tags/1.3.19 (added)
-
tags/1.3.19/index.php (added)
-
tags/1.3.19/readme.txt (added)
-
tags/1.3.19/tilted-tag-cloud.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/tilted-tag-cloud.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tilted-tag-cloud-widget/trunk/readme.txt
r2989131 r3056242 5 5 Requires at least: 2.9+ 6 6 Requires PHP: 7.0 7 Tested up to: 6. 48 Stable tag: 1.3.1 87 Tested up to: 6.5 8 Stable tag: 1.3.19 9 9 10 10 Shows a tilted cloud with the most used tags in a sidebar widget. … … 50 50 == Changelog == 51 51 52 = 1.3.1 8=52 = 1.3.19 = 53 53 * Added: Hover color setting 54 * Plugin tested up WordPress 6. 454 * Plugin tested up WordPress 6.5 55 55 56 56 = 1.2 = -
tilted-tag-cloud-widget/trunk/tilted-tag-cloud.php
r2989131 r3056242 5 5 Description: Takes the website tags and aggregates them into a tilted cloud widget for sidebar. 6 6 Author: WhileTrue 7 Version: 1.3.1 87 Version: 1.3.19 8 8 Author URI: https://www.whiletrue.it/ 9 9 */ … … 29 29 $hover_color = (isset($instance['hover_color']) && $instance['hover_color'] != '') ? $instance['hover_color'] : 'black'; 30 30 $number = (isset($instance['words_number']) && is_numeric($instance['words_number']) && $instance['words_number'] > 0) ? $instance['words_number'] : 20; 31 $smallest_size = (isset($instance['smallest_size']) && is_numeric($instance['smallest_size']) && $instance['smallest_size'] > 0) ? $instance['smallest_size'] : 7; 32 $largest_size = (isset($instance['largest_size']) && is_numeric($instance['largest_size']) && $instance['largest_size'] > 0) ? $instance['largest_size'] : 14; 33 31 34 32 $tags = wp_tag_cloud('smallest=14&largest=30&number=' . $number . '&order=RAND&format=array'); 35 33
Note: See TracChangeset
for help on using the changeset viewer.