Plugin Directory

Changeset 3056242


Ignore:
Timestamp:
03/21/2024 03:49:18 PM (2 years ago)
Author:
whiletrue
Message:

release 1.3.19

Location:
tilted-tag-cloud-widget
Files:
4 added
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • tilted-tag-cloud-widget/trunk/readme.txt

    r2989131 r3056242  
    55Requires at least: 2.9+
    66Requires PHP: 7.0
    7 Tested up to: 6.4
    8 Stable tag: 1.3.18
     7Tested up to: 6.5
     8Stable tag: 1.3.19
    99
    1010Shows a tilted cloud with the most used tags in a sidebar widget.
     
    5050== Changelog ==
    5151
    52 = 1.3.18 =
     52= 1.3.19 =
    5353* Added: Hover color setting
    54 * Plugin tested up WordPress 6.4
     54* Plugin tested up WordPress 6.5
    5555
    5656= 1.2 =
  • tilted-tag-cloud-widget/trunk/tilted-tag-cloud.php

    r2989131 r3056242  
    55Description: Takes the website tags and aggregates them into a tilted cloud widget for sidebar.
    66Author: WhileTrue
    7 Version: 1.3.18
     7Version: 1.3.19
    88Author URI: https://www.whiletrue.it/
    99*/
     
    2929    $hover_color   = (isset($instance['hover_color']) && $instance['hover_color'] != '') ? $instance['hover_color'] : 'black';
    3030    $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   
    3432    $tags = wp_tag_cloud('smallest=14&largest=30&number=' . $number . '&order=RAND&format=array');
    3533
Note: See TracChangeset for help on using the changeset viewer.