I have a child theme.
In the file "archive-listing.php", I add these lines :
<div class="section-head"><h1><?php single_cat_title(); ?></h1></div>
<article class="listing"><?php echo category_description(); ?></article>
after these lines :
if (is_array($terms) && count($terms) > 0 && !is_search()):
?>
This shows the description of the category in the page of the category.
It's ok.
Now, I want the same thing in the page of a subcategory.
How can I do ?