Saturday, 8 August 2015

Wordpress: Allow HTMLtags in post category, tag or taxonomy Description in WordPres




Important code used in this video

// allow html in category and taxonomy descriptions
remove_filter( 'pre_term_description', 'wp_filter_kses' );
remove_filter( 'pre_link_description', 'wp_filter_kses' );
remove_filter( 'pre_link_notes', 'wp_filter_kses' );
remove_filter( 'term_description', 'wp_kses_data' );

No comments:

Post a Comment