Skip to content

Instantly share code, notes, and snippets.

@vfontjr
Created May 3, 2020 18:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vfontjr/e75fb543c0b426a89c73bfeebf6e0a4c to your computer and use it in GitHub Desktop.
Save vfontjr/e75fb543c0b426a89c73bfeebf6e0a4c to your computer and use it in GitHub Desktop.
<?php
add_filter('widget_tag_cloud_args','set_tag_cloud_font_size');
function set_tag_cloud_font_size($args) {
$args['smallest'] = 12; /* Set the smallest size to 12px */
$args['largest'] = 19; /* set the largest size to 19px */
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment