/**
* Disable Gutenberg on certain post types
* @param $current_status
* @param $post_type
*
* @return bool
*/
function disable_gutenberg( $post_type ) {
if ($post_type === 'resumes') {
return false;
}
}
add_filter('use_block_editor_for_post_type', 'disable_gutenberg');