我的永久链接设置为自定义结构:/blog/%year%/%monthnum%/%day%/%postname%/
我有一个自定义的帖子类型,我们称之为“帖子类型”。我还有一个名为archive post type的归档页面。php
正在访问域。com/post-type/though默认为存档。php并跳过存档帖子类型。php
我的register\\u post\\u类型如下所示:
register_post_type( \'ch_post_type\',
array(
\'labels\' => array(
.......
),
\'public\' => true,
\'has_archive\' => \'post-type\',
\'show_in_nav_menus\' => false,
\'menu_position\' => 100,
\'menu_icon\' => \'dashicons-category\',
\'supports\' => array(\'title\',\'editor\',\'custom-fields\'),
\'rewrite\' => array( \'slug\' => \'post-type\', \'with_front\' => false ),
\'hierarchical\' => true
)
);
在“设置”>“阅读”下,我为主页和博客设置了一个页面。
我也冲洗了我的永久性皮肤。
我知道其他人也有这个问题,但我还没有看到解决这个问题的答案。我使用的是3.9版
提前感谢您!