Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Yorlinq/818f7efeb985e7040828ce92405f4dc3 to your computer and use it in GitHub Desktop.
Save Yorlinq/818f7efeb985e7040828ce92405f4dc3 to your computer and use it in GitHub Desktop.
Allow HTML within category description - WordPress
// Remove HTML filter for 'pre_term_description'
foreach ( array( 'pre_term_description' ) as $filter ) {
remove_filter( $filter, 'wp_filter_kses' );
}
// Remove HTML filter for 'term_description'
foreach ( array( 'term_description' ) as $filter ) {
remove_filter( $filter, 'wp_kses_data' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment