Skip to content

Instantly share code, notes, and snippets.

@timwco
Created January 26, 2012 20:50
Show Gist options
  • Save timwco/1685021 to your computer and use it in GitHub Desktop.
Save timwco/1685021 to your computer and use it in GitHub Desktop.
Adjust Default Tags Widget
<?php
add_filter( 'widget_tag_cloud_args', 'my_widget_tag_cloud_args' );
function my_widget_tag_cloud_args( $args ) {
$args['number'] = 20;
$args['largest'] = 9;
$args['smallest'] = 9;
$args['unit'] = 'px';
$args['exclude'] = array(20, 80);
return $args;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment