<?php
$args = array(
'taxonomy' => array('post_tag','category'),
);
wp_tag_cloud($args);
?>
<?php
$args = array(
'taxonomy' => array('post_tag','category'),
'hide_empty' => false, // не скрывать пустые
'number' => 0, // показывать все (по-умолчанию 45)
);
wp_tag_cloud($args);
?>