wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_custom_css_kses_init › WordPress Function

Seit7.0.0
Veraltetn/v
wp_custom_css_kses_init ( Keine Parameter )
Zugriff:
  • private
Definiert in:
Codex:

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



Quellcode

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