Como criar um tag could no wordpress, de forma simples
<?php wp_tag_cloud( array(
'smallest' => 8, // tamanho da menor fonte a ser utilizada
'largest' => 22, // tamanho da maior fonte a ser utilizada
'unit' => 'px', // escolha como será o dimensionamento (pt, em, px, etc)
'number' => 45, // Número máximo de tags para mostrar
'format' => 'flat', // flat, list, or array. flat = spaces between; list = in li tags; array = does not echo results, returns array
'orderby' => 'name', // forma de ordenação name = alfanumerico por name; count = por popularidade
'order' => 'ASC', // starting from A, or starting from highest count
'exclude' => 12, // ID's de tags para excluir
'include' => 13, // ID's of tags to include, displays none except these
'link' => 'view', // view = links to tag view; edit = link to edit tag
'taxonomy' => 'post_tag', // post_tag, link_category, category - create tag clouds of any of these things
'echo' => true // set to false to return an array, not echo it
) ); ?>