我已经尝试寻找解决方案很多天了,但一直无法解决。
我的自定义帖子网址的结构为:custompost / category / subcategory / posttitle;有些帖子有一个子类别,有些则没有。
我想做什么:
我已经完成的工作:
我想弄清楚的是:
感谢您的帮助!
PS:这是我的自定义分类法的代码:
function create_custom_taxonomies(){
register_taxonomy( 'custom_cat', 'posts', array(
'hierarchical' => true,
'label' => "Post store",
'show_ui' => true,
'query_var' => true,
'rewrite' => array('slug' => 'posts', 'with_front' => false, 'hierarchical' => true),
));
}