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



wp_enable_block_templates › WordPress Function

Seit5.8.0
Veraltetn/v
wp_enable_block_templates ( Keine Parameter )
Zugriff:
  • private
Definiert in:
Codex:

Enables the block templates (editor mode) for themes with theme.json by default.



Quellcode

function wp_enable_block_templates() {
	if ( wp_is_block_theme() || wp_theme_has_theme_json() ) {
		add_theme_support( 'block-templates' );
	}
}