I'm using a Thematic child theme and I need to add a shortcode to specific template-generated pages (e.g. the archive page with the body class .category-topic). The shortcode's author says I can embed this code in my template:
<?php
if ( function_exists( 'nktagcloud_shortcode' ) ) {
echo nktagcloud_shortcode( null );
}
?>
... but I only want it to appear in certain pages like the one with the body class mentioned above. I'm hopeful I can achieve this by adding something to my functions.php but I don't know what to do. Any help would be much appreciated.