我有两个CPT
,我使用CPT-onomies(插件)来链接这两个CPT。 由于此插件使CPT paesi 成为一种分类法,因此每个CPT 地方都可以与一个“ paesi ”相关。
现在,感谢自定义帖子类型的永久链接(插件),我有了以下永久链接结构:
domain.com/places/milano/duomo
[domain.com/places/%peasi%/%post-name%/]
我想从永久链接中删除CPT放置的子弹,以具有此永久链接结构:
domain.com/milano/duomo
[domain.com/%peasi%/%post-name%/]
我尝试了不同的解决方案,但如果永久链接中没有%paesi%,它们都可以使用。
您有什么建议吗?
其他信息:
register_post_type( 'places',
array(
'labels' => $labels,
'public' => true,
'has_archive' => false,
'rewrite' => array(
'slug' => 'places',
'with_front' => false,
),
'supports' => array( 'title', 'editor', 'excerpt', 'page-attributes', 'thumbnail' ),
'show_in_menu' => true
)
);
register_post_type( 'paesi',
array(
'labels' => $labels,
'public' => true,
'has_archive' => false,
'rewrite' => array(
'with_front' => false,
),
'supports' => array( 'title', 'editor', 'excerpt', 'page-attributes', 'thumbnail' ),
'show_in_menu' => true
)
);