Hide Editor on pages
-
Hello,
How can i hide the classic editor on wordpress pages? any snippet for functions.php? or plugin?
I try this but not working
add_action( 'admin_init', 'hide_editor' ); function hide_editor() { $post_id = $_GET['post'] ? $_GET['post'] : $_POST['post_ID'] ; if( !isset( $post_id ) ) return; $template_file = get_post_meta($post_id, '_wp_page_template', true); remove_post_type_support('page', 'editor'); }
Thanks.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Hide Editor on pages’ is closed to new replies.