Override WordPress Tag Cloud Defaults June 18th, 2014
Add this to functions.php…
function my_widget_tag_cloud_args( $args ) {
// Your extra arguments go here
$args['number'] = 999;
return $args;
}
add_filter( 'widget_tag_cloud_args', 'my_widget_tag_cloud_args' );