Answer the question
In order to leave comments, you need to log in
How to display the category description on the page?
I use the following to display the description on the category page:
<?php
if (is_category()) {
if (is_paged()) { echo '';}
else {
echo category_description(); }
} ?>
<div>
so that the output text is really considered description and not just ( <p> )
? Answer the question
In order to leave comments, you need to log in
the_archive_description( '<div class="category-description">', '</div>' );
echo '<div class="category-description">';
echo category_description();
echo '</div>';
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question