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

来源: 腾讯云Qcloud评测
日期: 2021-12-9
作者: 腾讯云/服务器VPS推荐评测/Vultr

最近有小伙伴找到老季,想要把自定义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,在 设置固定链接 中重新保存即可。

链接到文章: https://qcloudx.com/47574.html

发表回复

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