WooCommerce:为属性过滤器设置永久链接

时间:2018-03-13 11:17:27

标签: wordpress woocommerce url-rewriting permalinks

我想设置新的永久链接结构,如下所示。

当前网址:http://localhost/tech/?product_cat=3-sits-soffa&filter_form=svangd

新网址:http://localhost/tech/3-sits-soffa/svangd

我也尝试使用add_rewrite_tag和add_permastruct但不适合我。

以下是我使用的代码。

add_action( 'init', 'custom_rewrite1' );
   function custom_rewrite1() {
    add_rewrite_rule(
        '(.?.+?)?(:/([0-9]+))?/?$',
        'index.php?product_cat=$matches[1]&filter_form=$matches[2]',
        'top'
    );
}

0 个答案:

没有答案