To more personalize your WordPress blog you can use the categories description. But WordPress uses content filters that strip out all but the most basic formatting tags. And we can not add HTML code for the categories descriptions.
Our team wrote a small WordPress Category HTML Description plugin, which solves this problem.
Plugin disables content filters and any html code you add to the category description will not be stripped out.
Installation:
- Upload
`wc_cat_description.php`
to the`/wp-content/plugins/`
directory - Activate the plugin through the ‘Plugins’ menu in WordPress
To show html category description use the following code in your category.php/archive.php
template.
<?php if(function_exists('wc_category_html')) : ?> <?php wc_category_html(); ?> <?php endif; ?>
Download