首页 > 解决方案 > 更改特定 Woocommerce 产品类别存档页面的默认排序

问题描述

我找到了这段代码,但它只适用于我想添加三个或四个类别的一个类别

add_filter( 'woocommerce_get_catalog_ordering_args', 'custom_catalog_ordering_args', 20, 1 );
function custom_catalog_ordering_args( $args ) {
    $product_category = 't-shirts'; // <== HERE define your product category

    // Only for defined product category archive page
    if( ! is_product_category($product_category) ) return $args;

    // Set default ordering to 'date ID', so "Newness"
    $args['orderby'] = 'date ID';

    if( $args['orderby'] == 'date ID' )
        $args['order'] = 'DESC'; // Set order by DESC

    return $args;
}

标签: wordpresswoocommerce

解决方案


推荐阅读