Guest User

Untitled

a guest
Apr 20th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2. add_filter('widget_tag_cloud_args','thisbailiwick_set_tag_cloud_font_size');
  3. function thisbailiwick_set_tag_cloud_font_size($args) {
  4. $args['smallest'] = 12; /* Set the smallest size to 12px */
  5. $args['largest'] = 19; /* set the largest size to 19px */
  6. return $args;
  7. }
Add Comment
Please, Sign In to add comment