but the function does not seem to be the culprit either.
I replaced the current function from 2.3:
function category_description($category = 0) {
global $cat;
if ( !$category )
$category = $cat;
return get_term_field('description', $category, 'category');
}
with the one from wordpress 2.2:
function category_description($category = 0) {
global $cat;
if ( !$category )
$category = $cat;
$category = & get_category($category);
return apply_filters('category_description', $category->category_description, $category->cat_ID);
}
and i still had the paragraph tag problem (and no errors) when I hit refresh in firefox... where else could the problem be?
Thanks again. N
PS my title just calls it in php directly
<?php echo (category_description($catid)) ?>