如何将永久链接部分添加到编辑页面的 posts of custom post type in admin

how add permalink section to edit page of posts of custom post type in admin

我通过以下代码创建了一个名为 arz-countrydetails 的自定义 post:

register_post_type( 'arz-countrydetails',[
        'labels' => $labels,
        'public' => false,
        'show_ui'=> true,
        'show_in_menu'=> 'countrydetailsSlug',
        'rewrite' => array('slug' => 'regulation'),
        'has_archive' => 'regulation',

    ]);

现在,当我在管理部分打开此自定义 post 的 post 的编辑页面时,其中没有任何永久链接部分。

我想知道如何在管理中添加永久链接部分以编辑自定义 post 的 post 页面?

这是我的自定义 post 编辑页面的当前视图:

这就是我要添加到自定义 post 编辑页面的内容:

编辑: 自定义-post 屏幕选项的屏幕截图:

我相信要控制永久链接,您应该 post 键入 public。

'public' => true

让我知道它是否有效,祝你好运!