WordPress 如何在管理帖子/编辑侧栏上添加另一个带有自定义元框的选项卡?

问题描述

虽然,我已经使用以下代码成功地将元框添加到管理侧栏,

function custom_register_Meta_Boxes()
{
    add_Meta_Box('custom-1',__('My custom Meta Box','custom'),'custom_display_callback','post',"side","high",null);
   
}
add_action('add_Meta_Boxes','custom_register_Meta_Boxes');

我想问一下是否有可能在“阻止”选项卡旁边的管理帖子/编辑选项卡上添加一个选项卡。 (见图)。

enter image description here

谢谢

解决方法

https://developer.wordpress.org/block-editor/reference-guides/components/tab-panel/#development-guidelines

你试过这个吗? Gutenberg 更基于 JS,这可能是一个好的开始。