I have registered a Custom Post Type (let's call it "Book").
On this Custom Post Type, following the developer ressources, I have these parameters :
'show_in_rest' => true,
'supports' => array('title','editor')
Everything is working like a charm : I have all the Gutenberg interface. But when I remove the editor from… :
'supports' => array('title','editor')
…I come back to the old classic editor interface.
Is there a way to avoid this ? I know this behaviour is fully intended by the WordPress team, but it doesn't suit my needs.
As I need UX consistency between the Posts interface and my Book interface, I would like to get the modern interface (see first screenshot on the top versus classic interface on the bottom) without the Gutenberg editor, which I won't use on this Custom Post Type.
Is there a hacky way to achieve this ?