Disable Block Template Editor
Removes the template-editing option from the Block Editor so users cannot modify block templates.
PHPby SnipCraft
php
<?php
add_filter( 'block_editor_settings_all', 'scseed_disable_template_editor' );
if ( ! function_exists( 'scseed_disable_template_editor' ) ) {
function scseed_disable_template_editor( $settings ) {
$settings['supportsTemplateMode'] = false;
return $settings;
}
}#admin#block-editor#editor#gutenberg#templates