Skip to content

Instantly share code, notes, and snippets.

@twitchy
Created June 24, 2014 16:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save twitchy/9ebcd5b9d151242b45c6 to your computer and use it in GitHub Desktop.
Save twitchy/9ebcd5b9d151242b45c6 to your computer and use it in GitHub Desktop.
wordpress-tags
<h3>Random remix tag cloud:</h3>
<?php wp_tag_cloud('number=50&format=list&order=RAND'); ?>
<h3>Most common tags:</h3>
<?php wp_tag_cloud('number=50&format=list&orderby=count'); ?>
<h3>All <?php if (function_exists('tagstats')) { tagstats(); } ?> tags in alphabetical order:</h3>
<?php wp_tag_cloud('smallest=10&largest=10&number=0&format=list'); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment