我有一个注册的post类型,其“rewrite”设置为slug=>cpt\\u name,而\\u front=>true。
register_post_type( \'objection_handling\',
array(
\'rewrite\' => array(
\'slug\' => \'objection_handling\',
\'with_front\' => true
)
然后,我有一个wp\\u list\\u pages函数,其参数为post\\u type=>cpt\\u name。此函数成功显示自定义帖子类型的无序列表。
然后使用rewrite=>false定制分类法。
register_taxonomy(
\'objection_topics\',
\'objection_handling\',
array(
\'hierarchical\' => true,
\'public\' => true,
\'query_var\' => true,
\'rewrite\' => false,
\'labels\' => array(
\'name\' => __( \'Objection Handling Topics\' ),
\'singular_name\' => __( \'Objection Handling Topic\' ),
\'hierarchical\' => true
),
)
);
现在,我想这将输出一个URL,如:/Objective\\u handling/[页面标题],但我得到了404个错误。