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



wp_set_editor_default_mode › WordPress Function

Seit6.8.0
Veraltetn/v
wp_set_editor_default_mode ( Keine Parameter )
Definiert in:
Codex:

Sets the default editor mode based on support for block templates.



Quellcode

function wp_set_editor_default_mode() {
	if ( wp_is_block_theme() && current_theme_supports( 'block-templates' ) ) {
		add_post_type_support( 'page', 'editor', array( 'default-mode' => 'template-locked' ) );
	}
}