wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_custom_css_kses_init_filters › WordPress Function

Since7.0.0
Deprecatedn/a
wp_custom_css_kses_init_filters ( No parameters )
Access:
  • private
Defined at:
Codex:

Adds the filters to strip custom CSS from block content on save.

Priority of 8 to run before wp_filter_global_styles_post (priority 9) and wp_filter_post_kses (priority 10).


Source

function wp_custom_css_kses_init_filters() {
	add_filter( 'content_save_pre', 'wp_strip_custom_css_from_blocks', 8 );
	add_filter( 'content_filtered_save_pre', 'wp_strip_custom_css_from_blocks', 8 );
}