landbryo of Mission Lab
5/7/2019 - 7:45 PM

Disable Gutenberg for specific post types.

/**
 * 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');