Created
December 3, 2021 22:07
-
-
Save hamidrezayazdani/23379ba130a9656260012b8fd85d6a3b to your computer and use it in GitHub Desktop.
Allow HTML in term (category, tag) descriptions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* 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