更改特定 Woocommerce 产品类别存档页面的默认排序

时间:2021-05-19 22:41:22

标签: wordpress 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;
}

0 个答案:

没有答案