Thread Starter
dhuyck
(@dhuyck)
P.S. This is the best-named plugin that I’ve seen. Nice work.
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;
}
`