Just looking for some history on the output of category_description()
I have categories whose "description" fields are formatted with rich text and I'm trying to understand the differences in WP version with respect to the output of this method so that I can do a version check if necessary to implement desired output.
For example, before 3.0.1, it appears that category_description() returned the output stripped of any html markup. However, with the current 3.3.1 release, the output appears to be raw.
Just looking for some history on the output of category_description()
I have categories whose "description" fields are formatted with rich text and I'm trying to understand the differences in WP version with respect to the output of this method so that I can do a version check if necessary to implement desired output.
For example, before 3.0.1, it appears that category_description() returned the output stripped of any html markup. However, with the current 3.3.1 release, the output appears to be raw.
Share Improve this question edited Feb 9, 2019 at 0:04 fuxia♦ 107k39 gold badges255 silver badges461 bronze badges asked Feb 6, 2012 at 16:22 N2MysticN2Mystic 3,1937 gold badges47 silver badges72 bronze badges1 Answer
Reset to default 2Actually HTML is stripped on input, using wp_filter_kses
function hooked into pre_term_description
filter. So if this hook isn't removed HTML would be stripped.