您最好添加或修改rewrite
正在传递给register_taxonomy()
调用自定义分类法。您可以修改重写以符合您的目的。
例如:
$taxonomy_args = array(
// All the variables and their values...
\'rewrite\' => array(
\'slug\' => \'services/home-care\',
),
// ...more variables and values...
);
register_taxonomy( \'tax_city\', $object_types, $taxonomy_args );
在进行更改后,请确保刷新站点的永久链接。