You know that starting from WordPress 5.0, the new Gutenberg editor is the default editor for posts and pages. But that is not the case for custom post types. The classic editor still shows up by default.

So, in this guide, I will show you how to enable the Gutenberg editor for the custom post types on your site. The process is simple. However, based on how you've created the CPT, the methods also differ. 

Below, we will discuss two methods for a CPT created:

Let us start with the manual method first.

Manually Enable Gutenberg Editor for Custom Post Types

First of all, find out where you've defined the CPT code using the register_post_type() function. It can be in your theme's functions.php file or in a site plugin. It usually looks like this:

how to enable gutenberg editor for custom post types

You should change it to the following to add support for the Gutenberg editor.

enabling editor and rest api support for cpt

In the above code, we've done two things to enable Gutenberg:

  • Added 'editor' value to the 'supports' array
  • Set the 'show_in_rest' key to true

The 'supports' key is used to enable support for several core WordPress features for the CPT, like featured image, excerpt, etc. There is no problem even if you do not define that key at all, as it's default values are 'title' and 'editor.' But if you define it, be sure to include 'editor' also.

The second step is setting the 'show_in_rest' key to true. You might know that WordPress has a built-in REST API. By enabling 'show_in_rest', we make sure the custom post type data is available via this API.

The Gutenberg editor depends on the API to work. Unlike CPTs, posts and pages are API-enabled by default, and they support Gutenberg out of the box.

After modifying the code, reload the editor and see if Gutenberg is showing up. Then repeat the process for all other CPTs for which you want to enable the new editor.

Method 2: Using the Custom Post Type UI Plugin

At least some of you might be using the Custom Post Type UI plugin to create CPTs on your site. If so, you don't have to deal with any code directly. The plugin gives a friendly interface to manage all.

Usually, you don't have to do anything more to enable Gutenberg if using CPT UI. But if you still find that your CPT uses the classic editor, check the following.

Go to the Registered Types/Taxonomies page under CPT UI. Then click the CPT for which you want to enable Gutenberg. Under the Settings tab, check two things:

  • Show in REST API field should be set to true

Then scroll down, and for the Supports section,

  • Ensure that 'Editor' is checked

cpt ui plugin - edit

shot in rest api option - cpt ui

After doing this, you should be able to edit your posts in Gutenberg. Then repeat the same for all other CPTs.

Conclusion

We saw that REST API support and adding the value editor are the two main requirements to enable Gutenberg for any post type. So, I hope that this short post has helped you.

One more thing, if you have the Classic Editor plugin active on the site, Gutenberg won't be available for any type, be it posts, pages, or CPTs. So, deactivate it.

If you still couldn't get it working on your site, feel free to mention your issue in the comments.