I have posts under child categories and I basically want to display the child category's title and description. I tried
<h2><?php single_cat_title(''); ?></h2>
<p> <?php echo category_description($category); ?> </p>
but this displays the category title and description of the parent. How can I show the child category's title and description?