dhuyck (@dhuyck)
Where do I apply this to which file plugin.php? Do I replace or just add?
Thanks so much
I’ve found a fix that I will submit. Adding these lines to the is_supported_post_type( $type ) method makes the metabox draw properly in Gutenberg:
`
if ( is_object( $type ) ) {
$type = $type->id;
}