Quantcast
Viewing all articles
Browse latest Browse all 41

Add category description if it exists

Add the category description to your category templates, but only if it exists. This also wraps the description in div tags.

<?php
$category_description = category_description();
if ( ! empty( $category_description ) )
echo apply_filters( 'category_archive_meta', '<div class="description">' . $category_description . '</div>' );
?>

The post Add category description if it exists appeared first on Dare to Think.


Viewing all articles
Browse latest Browse all 41

Trending Articles