I have tried both plugin to make Category’s Description field as editor with below plugin. but when i update the text it’s remove
tag
http://wordpress.org/plugins/rich-tax-description-editor/
http://wordpress.org/plugins/categorytinymce/
tried google also but din’t help
How are you outputting the category description? You might need to use something like
apply_filters('the_content', category_description( $category_id ));
orwpautop(category_description( $category_id ));
to have paragraphs in the output.Edit:
Adding what you had in JSFiddle – note where
$term->description
is, I wrap it inwpautop
. See if that works. If not, tryapply_filters('the_content', $term->description)
instead: