我对自定义帖子类型有问题-permalink is不显示:
帖子类型已发布,但我无法在网站上显示。我尝试将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\')
);
谢谢你的建议。