WordPress Version: 6.2
/**
* Enables the block templates (editor mode) for themes with theme.json by default.
*
* @access private
* @since 5.8.0
*/
function wp_enable_block_templates()
{
if (wp_is_block_theme() || wp_theme_has_theme_json()) {
add_theme_support('block-templates');
}
}