Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Last active December 18, 2015 13:29
Show Gist options
  • Save wpspeak/5789972 to your computer and use it in GitHub Desktop.
Save wpspeak/5789972 to your computer and use it in GitHub Desktop.
Customize WordPress Tag Cloud Widget
<?php
// Parameters accepted by tag cloud widget
// @url http://codex.wordpress.org/Function_Reference/wp_tag_cloud
$args = array(
'smallest' => 8,
'largest' => 22,
'unit' => 'pt',
'number' => 45,
'format' => 'flat',
'separator' => \\"\n\\",
'orderby' => 'name',
'order' => 'ASC',
'exclude' => null,
'include' => null,
'topic_count_text_callback' => default_topic_count_text,
'link' => 'view',
'taxonomy' => 'post_tag',
'echo' => true,
'child_of' => null
); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment