是否在存档中打开自定义POST类型项目?

时间:2011-02-03 作者:Wordpressor

我有自己的自定义帖子类型:

wordpress/自定义

但当我打开此帖子类型的任何项目时,它们会在以下位置打开:

wordpress/存档/自定义/标题

为什么会有“归档”以及如何从我的URL中删除它?

分类注册如下:

register_taxonomy("our_frontpage_types", array("frontpage"), array("hierarchical" => true, "label" => "Categories", "singular_label" => "Category", "rewrite" => true));
该帖子的注册方式如下:

add_action(\'init\', \'fp_register\');
好吧,现在我知道永久链接有问题,但/%类别%/%postname%还远远不够完美。是否有类似于%section%/%postname%的内容?

1 个回复
最合适的回答,由SO网友:Bainternet 整理而成

WordPress将在url中添加存档库,如果它认为页面是存档,那么当我遇到问题时,是因为我将自定义帖子类型和自定义分类命名为相同,是这样吗?

结束

相关推荐

Changing attachment urls?

如何更改附件页URL的格式/[post-url]/[attachment-name]/ 到/media/[attachment-name]/? 我知道我可以覆盖get_attachment_link 通过attachment_link 过滤器,但我想我需要更改重定向结构,以便WordPress知道如何处理这些URL?