自定义POST类型固定链接不会在管理员中显示

时间:2017-02-09 作者:Michal Pelech

我对自定义帖子类型有问题-permalink is不显示:

enter image description here

帖子类型已发布,但我无法在网站上显示。我尝试将permalink结构更改为?p=123, 但它仍然不起作用。我尝试将代码中的“rewrite”属性更改为false,但没有区别。

Some ideas where can be problem?

以下是我的自定义帖子类型代码:

$args_team = array(
    \'labels\' => sk_post_type_labels( __(\'Tým\', \'sk\'), __(\'Tým\', \'sk\') ),
    \'public\' => true,
    \'has_archive\' => true,
    \'exclude_from_search\' => true,
    \'publicly_queryable\' => true,
    \'show_ui\' => true,
    \'query_var\' => true,
    \'capability_type\' => \'post\',
    \'hierarchical\' => false,
    \'menu_position\' => 10,
    \'rewrite\' => array( \'slug\' => \'team\' ),
    \'supports\' => array(\'title\',\'editor\',\'thumbnail\',\'page-attributes\')
);
谢谢你的建议。

2 个回复
SO网友:Mario Melchor

我将以下内容设置为true,以在管理部分显示永久链接。

\'publicly_queryable\' => true,

SO网友:Svartbaard

尝试从搜索中删除并将永久链接设置为Post name.

您应该能够使用:mysite访问。com/团队/新团队成员

相关推荐

Permalinks - Archives

WordPress文档说:WordPress offers you the ability to create a custom URL structure for your permalinks and archives. https://codex.wordpress.org/Settings_Permalinks_Screen 我看到此屏幕将如何为特定帖子/页面创建永久链接,但我没有看到此设置屏幕上关于如何为存档帖子/页面创建链接的任何其他详细信息。有人能澄清一下吗?