Category Descriptions

The Melos theme doesn’t add our category descriptions to the category page, so we have to edit their archive.php to add it ourselves. I added this just before the /header tag:

           <div class="catdesc">                 
           <?php 
           /* add category description */
            echo category_description( $category_id ); ?>
           </div>

This has to be re-added after each theme update. Bummer!
It has class “catdesc” so I added to the custom css in customize:

This has to be re-added after each theme update. Bummer!

It has class “catdesc” so I added to the custom css in customize:

.catdesc {
margin: 1em;}