enter image description here I make a template with arbitrary fields, respectively, the main content window is not needed, can I remove it using functions.php? and how can this be done?

    1 answer 1

    Add this code to functions.php

    function hide_editor() { remove_post_type_support('page', 'editor'); } add_action( 'admin_head', 'hide_editor' );