I’m having an issue with a new theme I’m using on my website.
I’m using categories but the descriptions don’t appear (they did work fine with another theme).
https://www.pierodesopo.com/category/lostfound/
I searched and found some suggestion regarding the description, but all I’ve got in the end was the description appearing repeated for each entry, whereas I want it to stick to the top of the page:
https://www.wpbeginner.com/wp-tutorials/how-to-display-category-descriptions-in-wordpress/
Best
]]>I asked but it seems the theme is not receiving much support lately.
Last time they gave support was one year ago.
Best,
Piero
<?php
if(is_category()){
the_archive_description( '<div class="taxonomy-description">', '</div>' );
}
?>
and this will display category description for you.
Please remember that you’re directly editing theme file which means when you upgrade theme the changes will be lost, I would recommend to create child theme instead and then make edits.
Let me know if this works fine.