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



wp_custom_css_kses_init › WordPress Function

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

Registers the custom CSS content filters if the user does not have the edit_css capability.



Source

function wp_custom_css_kses_init() {
	wp_custom_css_remove_filters();
	if ( ! current_user_can( 'edit_css' ) ) {
		wp_custom_css_kses_init_filters();
	}
}