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



remove_editor_styles › WordPress Function

Seit3.1.0
Veraltetn/v
remove_editor_styles ( Keine Parameter )
Gibt zurück:
  • (bool) True on success, false if there were no stylesheets to remove.
Definiert in:
Codex:

Removes all visual editor stylesheets.



Quellcode

function remove_editor_styles() {
	if ( ! current_theme_supports( 'editor-style' ) ) {
		return false;
	}
	_remove_theme_support( 'editor-style' );
	if ( is_admin() ) {
		$GLOBALS['editor_styles'] = array();
	}
	return true;
}