Skip to content

Instantly share code, notes, and snippets.

@wpmark
Created June 22, 2014 17:38
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 wpmark/06c3402bd55e6288b9ea to your computer and use it in GitHub Desktop.
Save wpmark/06c3402bd55e6288b9ea to your computer and use it in GitHub Desktop.
Filter the Output of WordPress Tag Cloud Widget
<?php
function wpmark_widget_tag_cloud_args( $args ) {
$args[ 'smallest' ] = '1.5';
$args[ 'largest' ] = '1.5';
$args[ 'unit' ] = 'em';
return $args;
}
add_filter( 'widget_tag_cloud_args', 'wpmark_widget_tag_cloud_args' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment