dtwilliamson
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Where do I change the size of fonts in tag cloud?if not sidebar.php it might be widgets.php
Forum: Fixing WordPress
In reply to: Tag Cloud font SizeI wouldn’t change the defaults. It’s better to add the parameters where wp_tag_cloud is actually called.
for example:
wp_tag_cloud('smallest=8&largest=22');
in wp-includes/widgets.php
Forum: Fixing WordPress
In reply to: Making Tag Cloud look like a listor edit wp-includes/widgets.php
Forum: Fixing WordPress
In reply to: WP Tag CloudFor the default widgets, edit wp-includes/widgets.php using information found at:
Forum: Plugins
In reply to: Removing a Specific Tag From Tag CloudTo exclude specific tags, edit wp-includes/widgets.php using information found at:
basically, you want this:
wp_tag_cloud('exclude=13,21');
would exclude tag numbers 13 and 21. You can find the tag id number by going to the tags page in your admin and hovering over the tag you’re interested in. You can see the number in the status bar of your browser. Or on that same screen, click on the tag to edit it and the number will be in your browser’s URL/address bar.
Forum: Fixing WordPress
In reply to: howto edit tag cloud font sizes?To change the font sizes, edit wp-includes/widgets.php using information found at:
basically, you want this:
wp_tag_cloud('smallest=8&largest=22');
substituting the sizes you want.
Forum: Themes and Templates
In reply to: Customizing Tag Cloud widgetTo change the font sizes, edit wp-includes/widgets.php using information found at:
basically, you want this:
wp_tag_cloud('smallest=8&largest=22');
substituting the sizes you want.
Forum: Fixing WordPress
In reply to: Styling Tag Cloud WidgetTo change the font sizes, edit wp-includes/widgets.php using information found at:
basically, you want this:
wp_tag_cloud('smallest=8&largest=22');
substituting the sizes you want.
Forum: Fixing WordPress
In reply to: Limit tags in tag cloudTo change the font sizes, edit wp-includes/widgets.php using information found at:
basically, you want this:
wp_tag_cloud('smallest=8&largest=22');
substituting the sizes you want.
Forum: Fixing WordPress
In reply to: Tag Cloud ordering (WP 2.5)edit wp-includes/widgets.php using information found at:
basically, you want this:
wp_tag_cloud('order=RAND');
You’ll also need to enable the tag cloud widget.