WordPress / create-block-theme

A WordPress plugin to create block themes
https://wordpress.org/plugins/create-block-theme/
GNU General Public License v2.0
310 stars 44 forks source link

Replace deprecated `PluginSidebar` and `PluginSidebarMoreMenuItem` #676

Open t-hamano opened 3 days ago

t-hamano commented 3 days ago

In WordPress 6.6, editor-related slots and APIs have been integrated into the editor package.

As a result, if you run this plugin on WordPress 6.6, you will see messages like the following in the browser console.

wp.editPost.PluginSidebar is deprecated since version 6.6. Please use wp.editor.PluginSidebar instead.
wp.editPost.PluginSidebarMoreMenuItem is deprecated since version 6.6. Please use wp.editor.PluginSidebarMoreMenuItem instead.

We will need to deal with these error messages when this plugin supports WordPress versions 6.6 and above.

Source: Editor: Unified Extensibility APIs in 6.6