Wordpress - Category title and description in template
Copy this code and paste it in your HTML
<?php $category = get_the_category
();
echo $category[0]->cat_name;?
> <?php $category = get_the_category
();
echo $category[0]->category_description;
?>
Report this snippet