在WooCommerce产品类别中包括一个静态页面

时间:2019-03-07 11:40:00

标签: php wordpress woocommerce

我的网站有几个产品类别,例如:

  • site.com/product-category/logs
  • site.com/product-category/sheds
  • site.com/product-category/wood
  • site.com/product-category/local

最后一个,我还有一个本地产品页面: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结构,而是关于在类别页面的循环中包含一个非产品类别链接。

1 个答案:

答案 0 :(得分:0)

重复

WooCommerce- How to remove product & product-category from urls?

我认为您的问题已经得到解答。如果我误会了,请告诉我。