Hi, I tried to change the font sizes in my Tag Cloud but it won't change. I tried the plugin "Resize Tag Plugin" but it's not changing my Tags?
http://www.ridingnycwithamy.com
Thanks
Amy
Hi, I tried to change the font sizes in my Tag Cloud but it won't change. I tried the plugin "Resize Tag Plugin" but it's not changing my Tags?
http://www.ridingnycwithamy.com
Thanks
Amy
each tag's font size automatically increases depending on how many times it's used.
you can try and add this to functions.php of your theme:
add_filter('widget_tag_cloud_args','set_cloud_tag_size');
function set_cloud_tag_size($args) {
$args = array('smallest' => 14, 'largest' => 25);
return $args;
}
you can use these arguments:
http://codex.wordpress.org/Function_Reference/wp_tag_cloud
as you only have one post per tag, these are shown at the moment using the smallest font-size ...
This topic has been closed to new replies.