我通过以下代码制作了一个名为 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部分中打开此自定义帖子的帖子的编辑页面时,其中没有任何永久链接部分。
我想知道如何在管理员中添加永久链接部分以编辑自定义帖子的帖子页面吗?
答案 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>
让我知道它是否有花招和好运!