WordPress 自定义类型文章 从url地址中删除 taxonomy 分类How to remove custom taxonomy-base from URL in WordPress

最近有小伙伴找到老季,想要把自定义ulr路径中把taxonomy自定义类型的分类删除。例如:

https://jiloc.com/projects_cat/fine-led-display/

变成

https://jiloc.com/projects_cat/fine-led-display/

下面我们给出代码解决办法:

register_taxonomy(
       'travel-category', //taxonomy base
       'destination', // custom post type
       'rewrite' => array( 'slug' => '/', 'with_front' => FALSE )
);

如果出现404,在 设置固定链接 中重新保存即可。

评论

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注