Archive for » February 2nd, 2009«
02
Feb 2009
I would like to show you how to modify the WordPress tag cloud widget font size.
I needed to manipulate the Tag Cloud widget so that the size of the largest font was not too big. It only took going in and changing one line in the widgets.php files. I wouldn’t suggest doing this unless you are somewhat comfortable with messing around with your code.
For Version, WordPress 2.7.1.
File to manipulate: wp-includes/widgets.php
Find:
wp_tag_cloud(); // at around line 1874Change to:
wp_tag_cloud(‘smallest=10&largest=14&number=25&orderby=name’);“smallest” is the size of the smallest font you want
“largest” is the size of the largest font you want
“number” is the amount of tags you want to appear
“orderby” is how the orders of the tags will be shown


Recent Comments