Skip to content

Instantly share code, notes, and snippets.

@robinadr
Last active August 29, 2015 14:02
Show Gist options
  • Select an option

  • Save robinadr/40dbdbe3c3f8ec562293 to your computer and use it in GitHub Desktop.

Select an option

Save robinadr/40dbdbe3c3f8ec562293 to your computer and use it in GitHub Desktop.
Category Clouds with WordPress
<?php
wp_tag_cloud( array(
'unit' => 'em', 'largest' => 1.5, 'smallest' => 0.8,
'taxonomy' => 'category',
'topic_count_text_callback' => function ( $count ) {
return ( $count == 1 ) ? '1 post' : $count . ' posts';
}
) );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment