Wordpress-自定义帖子类型永久链接

时间:2018-09-01 10:28:46

标签: wordpress custom-post-type permalinks

我有两个CPT

  • 地方(例如duomo)
  • paesi (例如米兰)

,我使用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
    )
);

0 个答案:

没有答案