Home / Disable Template Editor
Duplicate Snippet

Embed Snippet on Your Site

Disable Template Editor

Disable access to modify or create templates from the Post Editor.

<10
Code Preview
php
<?php
add_action( 'current_screen', function () {
    $screen = get_current_screen();
	// Add other custom post types here as needed.
    if ( in_array( $screen->id, array( 'post', 'page' ) ) ) {
        remove_theme_support( 'block-templates' );
    }
} );

Comments

Add a Comment