Last active
August 29, 2015 14:02
-
-
Save robinadr/40dbdbe3c3f8ec562293 to your computer and use it in GitHub Desktop.
Category Clouds with WordPress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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