Skip to content

Instantly share code, notes, and snippets.

@wbcomdev
Created May 12, 2021 09:43
Show Gist options
  • Select an option

  • Save wbcomdev/6cf1f858d10137e3d10225759a700d3a to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/6cf1f858d10137e3d10225759a700d3a to your computer and use it in GitHub Desktop.
/**
* 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' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment