从Woocommerce中删除产品类别slug

时间:2017-09-14 05:55:30

标签: wordpress woocommerce pagination

我的分页有问题。问题的根源在于产品类别下降了3个级别。

我使用了timersys要点中的脚本:https://gist.github.com/timersys/78a2305d810c27efcb10ce62712d1d95

然后为了适应类别的第3级,我添加了以下内容:

add_filter('request', function( $vars ) {
    global $wpdb;

    if(isset($vars['error'])){
        $lastVar = basename($_SERVER['REQUEST_URI']);
        $vars['attachment'] = $lastVar;
    }
    //rest of the code
}

从这里开始:https://wordpress.stackexchange.com/questions/258053/remove-product-category-slug-plugin-works-with-1-subcategroy-not-with-2/258085#258085

所以现在一切正常并正确过滤,除非我在分页时更改页面,它会将我带到单个产品而不是下一页。

0 个答案:

没有答案