Wordpress //删除网址的帖子类型

时间:2018-10-10 20:09:47

标签: wordpress custom-post-type slug custom-taxonomy

我创建了一个CPT,并将多个自定义分类应用于该CPT。

目前,我的网址如下(使用插件):

www.example.com/ [cpt] / [分类术语] / post

对于特定的cpt,我想转到:

www.example.com/ [taxonomy-term] / post

我该如何实现?

1 个答案:

答案 0 :(得分:0)

如果您想为自定义post_type创建不带[cpt]的自定义子弹,则需要在args数组中传递该值

$args['rewrite'] = array(
     'slug'       => 'your-custom-post-type',
     'with_front' => false,
 ),

在此更新之后,您的永久链接