我的网站有几个产品类别,例如:
最后一个,我还有一个本地产品页面:site.com/local
我想将我的商店页面上的site.com/product-category/local链接替换为site.com/local链接。我尝试在我的functions.php中使用以下过滤器,但无济于事:
<?php
function replace_content($content) {
$content = str_replace('/product-category/local/', '/local/',$content);
return $content;
}
add_filter('the_content','replace_content');
编辑:我的问题不是关于更改产品类别链接的URL结构,而是关于在类别页面的循环中包含一个非产品类别链接。
答案 0 :(得分:0)