remondevries
3/6/2020 - 1:10 PM

Disable Gutenberg Editor

Disable Gutenberg from functions.php in your theme.

// disable for posts
add_filter('use_block_editor_for_post', '__return_false', 10);

// disable for post types
add_filter('use_block_editor_for_post_type', '__return_false', 10);