These are code lines that everyone can use that'll scale with all of the current WordPress versions -- and allowing for the theme to be compatible with 2.3. You must include the PHP IF statements as I have them here (though I'm sure there are probably ways to alter the output, other than what I have here).
This will provide generic 2.3 Tag Cloud support for Cutline, however -- without breaking the theme if 2.3 does not exist.:
Sidebar PHP, add into your sidebar.php file through Dashboard > Presenation > Edit Theme.
`// Cutline Tag Cloud for WordPress 2.3 (Sidebar)
<?php if ( function_exists('wp_tag_cloud') ) : ?>
<!-- WordPress 2.3 Tag Cloud -->
<li class="widget">
<h2>Tag Cloud</h2>
<p><?php wp_tag_cloud('smallest=8&largest=22&number=10'); ?></p>
<?php endif; ?>`
General code to include in areas other than the Sidebar.:
`// Cutline Tag Cloud for WordPress 2.3 (Layout)
<!-- WordPress 2.3 Tag Cloud -->
<?php if ( function_exists('wp_tag_cloud') ) : ?>
<p><?php wp_tag_cloud('smallest=8&largest=22&number=10'); ?></p>
<?php endif; ?>`
If anyone has other ways of implementing Tag Clouds into Cutline, can you please share? I'm not sure exactly how specific Tag Clouds can be with 2.3 -- and whether they can be specific to each post.
If this is the case, it would be interesting to see the variations that could be incorporated into the theme. [ie: Tag Cloud: 'tags', below Categories: 'categories' -- where it currently displays Tags: 'categories' for each post in Singlepost.php.]