【问题标题】:woocommerce change product permalink to productswoocommerce 将产品永久链接更改为产品
【发布时间】:2022-05-16 10:58:14
【问题描述】:

我目前在产品视图中有网址:https://mywebsite.com/product/product-name

商店网址如下所示:https://mywebsite.com/shop

我需要更改产品查看网址,例如https://mywebsite.com/products/product-name

我没有找到任何设置。

【问题讨论】:

    标签: wordpress woocommerce


    【解决方案1】:

    我试过了,对我来说效果很好

    让我知道你的想法..

    function change_post_types_slug( $args, $post_type ) {   
       if ( 'product' === $post_type ) {
          $args['rewrite']['slug'] = 'products';
       }
       return $args;
    }
    add_filter( 'register_post_type_args', 'change_post_types_slug', 10, 2 );
    

    【讨论】:

      【解决方案2】:

      如下截图所示的固定链接结构将给出预期的结果。

      图片链接:https://snipboard.io/xGJWK6.jpg

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 2021-07-01
        • 2018-11-04
        • 1970-01-01
        • 2014-04-23
        • 1970-01-01
        • 1970-01-01
        • 2015-12-28
        相关资源
        最近更新 更多