Advertisement
fahimmurshed

Allow HTML tags on thge post category description

Nov 17th, 2021
1,343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. /* fix for WooCommerce/Post category description - allow html tags by fahimm.com */
  2. foreach ( array( 'pre_term_description' ) as $filter ) {
  3.     remove_filter( $filter, 'wp_filter_kses' );
  4.     }
  5. foreach ( array( 'term_description' ) as $filter ) {
  6.     remove_filter( $filter, 'wp_kses_data' );
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement