Arama terimi: Wp kategori açıklamalarında HTML'e izin ver

İlgili kod: /**
* 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' );
}


İlgili bağlantı : https://docs.woocommerce.com/document/allow-html-in-term-category-tag-descriptions/