wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



wp_enable_block_templates › WordPress Function

Da5.8.0
Deprecaton/a
wp_enable_block_templates ( Nessun parametro )
Accedi:
  • private
Definito a:
Codex:

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



Sorgenti

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