WPSEO_Taxonomy::custom_category_descriptions_allow_html()
Allows post-kses-filtered HTML in term descriptions.
Метод класса: WPSEO_Taxonomy{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WPSEO_Taxonomy = new WPSEO_Taxonomy(); $WPSEO_Taxonomy->custom_category_descriptions_allow_html();
Код WPSEO_Taxonomy::custom_category_descriptions_allow_html() WPSEO Taxonomy::custom category descriptions allow html Yoast 24.9
public function custom_category_descriptions_allow_html() { remove_filter( 'term_description', 'wp_kses_data' ); remove_filter( 'pre_term_description', 'wp_filter_kses' ); add_filter( 'term_description', 'wp_kses_post' ); add_filter( 'pre_term_description', 'wp_filter_post_kses' ); }