Plugin Reviews

Allow HTML in Category Descriptions

This plugin allows you to use unfiltered HTML in your category descriptions by disabling selected WordPress filters.

Average Rating
5 stars
5 out of 5 stars
You are currently viewing the reviews that provided a rating of 5 stars. Click here to see all reviews.
5 stars
seems to work without issue
By , for WP 3.5.1

thanks!

5 stars
Does the job!
By , for WP 3.5.1

The plugin name says it all.

5 stars
perfect
By , for WP 3.5.1

It is awesome working perfectly what a plugin it is...

5 stars
works as advertised
By , for WP 3.5.1

it's just a small snippit of code. i wrapped it in a filter and added it to my functions.php file. Works just as well.

function sb_allow_category_desc_html() {
	foreach ( array( 'pre_term_description', 'pre_link_description', 'pre_link_notes', 'pre_user_description' ) as $filter ) {
		remove_filter( $filter, 'wp_filter_kses' );
	}
	foreach ( array( 'term_description', 'link_description', 'link_notes', 'user_description' ) as $filter ) {
		remove_filter( $filter, 'wp_kses_data' );
	}
}
add_action( 'init', 'sb_allow_category_desc_html' );
5 stars
Works perfectly
By , for WP 3.5.1

Plugin does what it says. Thanks Arno.

You must log in to submit a review. You can also log in or register using the form near the top of this page.