如何在管理员中添加永久链接部分以编辑自定义帖子类型的帖子页面

时间:2018-12-24 15:09:33

标签: wordpress custom-post-type permalinks

我通过以下代码制作了一个名为 arz-countrydetails 的自定义帖子:

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

    ]);

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

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

这是我的自定义帖子编辑页面的当前视图: enter image description here

这是我要添加到自定义帖子编辑页面的内容: enter image description here

修改: 自定义帖子屏幕选项的屏幕截图: enter image description here

1 个答案:

答案 0 :(得分:2)

我相信可以控制永久链接,因此您应该将帖子类型设为公开。

<p:menubar>
  <p:menuitem icon="fa fa-home" outcome="/index" value="Home" 
    rendered="#{not outcomeExists('index')}" />
  <p:menuitem icon="fa fa-home" outcome="index" value="Home"
    rendered="#{outcomeExists('index')}" />
  <p:menuitem icon="fa fa-user" value="#{login.name}"/>
</p:menubar>

让我知道它是否有花招和好运!