Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Created June 16, 2013 06:42
Show Gist options
  • Save wpspeak/5791104 to your computer and use it in GitHub Desktop.
Save wpspeak/5791104 to your computer and use it in GitHub Desktop.
Customize font-size of tag cloud widget
<?php
// Customize font-size of tag cloud widget
add_filter('widget_tag_cloud_args','set_number_tags');
function set_number_tags($args) {
$args = array('smallest' => 11, 'largest' => 11);
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment