Skip to content

Instantly share code, notes, and snippets.

@donnamcmaster
Created April 6, 2017 21:59
Show Gist options
  • Save donnamcmaster/cb72f858772fcd0dc9168c044613ae1f to your computer and use it in GitHub Desktop.
Save donnamcmaster/cb72f858772fcd0dc9168c044613ae1f to your computer and use it in GitHub Desktop.
WordPress: reduce the font sizes in the tag cloud
<?php
/**
* Reduce the font sizes in the WordPress tag cloud
*/
add_filter( 'widget_tag_cloud_args', function( $args ) {
$args['smallest'] = 11;
$args['largest'] = 24;
$args['unit'] = 'px';
return $args;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment