i asked this on SO but got no where. i will try asking here.
this works fine in category.php <?php echo category_description(the_category_id()); ?>
but it does not work in single.php, just the category id shows up not the description.
any ideas, how to get this done?
thanks in advance
Edit:
in category: <?php echo strip_tags(category_description(4)); ?>
in single <?php echo category_description(the_category_id()); ?> cat id = 4
i know i'm not striping the tags..for single
i'm just trying to display the cat desc when in the single post page.

category.phpwhere you are displaying the code where it works and where insingle.phpyou want the code to work? Where you want to use it matters a bit. – MikeSchinkel♦ Dec 26 '10 at 3:27