I want to do the same thing with the tags but it doesn’t want to work… Does someone have any tips?
Here is my piece of code:
<?php
$recent = new WP_Query('showposts=1');
while($recent->have_posts()) {
$recent->the_post();
the_category();
the_tags('', ', ', '');
}
$all_tags = wp_tag_cloud('smallest=11&largest=21&unit=px&number=20&format=array');
?>
Thanks ??