Allow HTML in term (category, tag) descriptions

Posted on
5/5 - (224 votes)

Add code to your child theme’s functions.php file or via a plugin that allows custom functions to be added, such as the Code snippets plugin. Avoid adding custom code directly to your parent theme’s functions.php file as this will be wiped entirely when you update the theme.

By default, WordPress strips HTML from category descriptions. This code will prevent that from happening.

/**
 * Allow HTML in term (category, tag) descriptions
 */
foreach ( array( 'pre_term_description' ) as $filter ) {
	remove_filter( $filter, 'wp_filter_kses' );
	if ( ! current_user_can( 'unfiltered_html' ) ) {
		add_filter( $filter, 'wp_filter_post_kses' );
	}
}
 
foreach ( array( 'term_description' ) as $filter ) {
	remove_filter( $filter, 'wp_kses_data' );
}

The first part prevents HTML from being stripped from term descriptions.

The second part prevents HTML being stripped out when using the term description function (http://codex.wordpress.org/Function_Reference/term_description).