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

WordPress如何在管理发布/编辑侧栏上添加另一个带有自定义元框的选项卡?,wordpress,meta-boxes,wordpress-plugin-creation,Wordpress,Meta Boxes,Wordpress Plugin Creation,尽管如此,我已经用以下代码成功地将meta box添加到管理员侧栏中 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

尽管如此,我已经用以下代码成功地将meta box添加到管理员侧栏中

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');
我想问一下,是否有可能在“阻止”选项卡旁边的“管理发布/编辑”选项卡上添加另一个选项卡。(见图)

谢谢

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