i have a piece of code which is helped to display the description of custom taxonomies
but i want to put <h1> tag for the title of description, but that description box doesn't takes html tags,
so how can i implement html tags to my description
here is my code
<div class="featured post">
<p><?php
if ( is_tax( 'location' ) ) {
echo term_description();
}
elseif (is_tax('mba_courses')){
echo term_description();
}
elseif (is_tax('duration')){
echo term_description();
}
?></p>
</div>
