<?php
$args = array(
\'smallest\' => 12,
\'largest\' => 12,
\'unit\' => \'pt\',
\'number\' => 0,
\'format\' => \'array\',
\'separator\' => "",
\'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, // see Note!
);
$myCloud = wp_tag_cloud( $args );
foreach ($myCloud as $tag) {
$tag = strip_tags($tag);
echo \'<li>\' . $tag . \'</li>\';
}
?>