我需要的Woocommerce功能,以消除产品标签的URL中的“产品标签”.我搜索更多的解决方案,但不工作,我不喜欢安装此功能的插件.谢谢我测试代码,但不工作
cs7cruho1#
将以下代码添加到functions.php文件中,以从URL中删除product-tag:
// Remove product tag base function my_remove_product_tag_base() { global $wp_rewrite; $wp_rewrite->extra_permastructs['product_tag']['struct'] = '/tag/%tag%'; } add_action('init', 'my_remove_product_tag_base');
1条答案
按热度按时间cs7cruho1#
将以下代码添加到functions.php文件中,以从URL中删除product-tag: