标记是一种称为product_tag
在WPEC 3.8+中,它们与默认的WordPress标记不同,因此tagbase没有任何作用。
wpsc核心/wpsc功能中的第315行。php:
register_taxonomy( \'product_tag\', \'wpsc-product\', array(
\'hierarchical\' => false,
\'labels\' => $labels,
\'rewrite\' => array(
\'slug\' => \'/\' . sanitize_title_with_dashes( _x( \'tagged\', \'slug, part of url\', \'wpsc\' ) ),
\'with_front\' => false )
) );
*编辑-我不知何故跳过了你问题中指出上述内容的部分,但是,更改此文件中的slug,然后刷新重写规则将更改slug,但你正在编辑核心文件,这总是很糟糕。
我想接下来的问题应该是“是否有可能覆盖register_taxonomy
呼叫“”