Category Descriptions – HTML?

The HTML is stripped by wp_filter_kses(). So this should work:

remove_filter( 'pre_term_description', 'wp_filter_kses' );

When you want to print that content, use wpautop():

echo wpautop( term_description() );

Leave a Comment