繁体   English   中英

更改特定 woocommerce 类别存档的默认排序顺序

[英]Change default sorting order for specific woocommerce category archive

在 Woocommerce 中,我试图更改按日期顺序递减的“新”产品类别存档页面的默认排序顺序,以便首先列出最新添加的内容。

我尝试了 2 个不同的代码片段。 两者都更改了默认顺序,但首先显示最旧的产品。

我已将两个代码段中的 ASC 更改为 DESC,并且都没有更改排序顺序。

我对编码非常陌生,并感谢对我出错的地方的任何帮助。

第一次尝试:

add_filter( 'woocommerce_default_catalog_orderby', 'custom_default_catalog_orderby' );

function custom_default_catalog_orderby() {

    $product_category = array( 'new' );

    if ( is_product_category( $product_category ) ) {
        return 'date_desc';
    }
}

第二次尝试:

add_filter( 'woocommerce_get_catalog_ordering_args', 'custom_catalog_ordering_args', 20, 1 );
function custom_catalog_ordering_args( $args ) {
    $product_category = 'new'; // <== 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;
}

任何帮助表示赞赏。

请尝试使用以下完整代码,该代码仅适用于特定定义的产品类别存档页面的“DESC”订单中的“日期”订单:

// Utility conditional function targetting specific product category archive page
function is_product_category_orderby(){
    // HERE your specific product category setting
    return is_product_category('new');
}

// Set custom orderby "Date DESC" for specific product category archive
add_filter( 'woocommerce_get_catalog_ordering_args', 'enable_catalog_ordering_by_date_desc' );
function enable_catalog_ordering_by_date_desc( $args ) {
    if ( isset( $_GET['orderby'] ) && is_product_category_orderby() ) {
        if ( 'date_desc' == $_GET['orderby'] ) {
            return array(
                'orderby'  => 'date ID',
                'order'    => 'DESC',
            );
        }
        // Make a clone of "menu_order" (the default option)
        elseif ( 'natural_order' == $_GET['orderby'] ) {
            return array( 'orderby'  => 'menu_order title', 'order' => 'ASC' );
        }
    }
    return $args;
}

// Add custom orderby "Date DESC" option for specific product category archive
add_filter( 'woocommerce_catalog_orderby', 'add_catalog_orderby_date_desc' );
function add_catalog_orderby_date_desc( $orderby_options ) {
    if ( is_product_category_orderby() ) {
        // Insert "Sort by modified date" and the clone of "menu_order" adding after others sorting options
        return array(
            'date_desc' => __("Sort by decreasing date ", "woocommerce"),
            'natural_order' => __("Sort by natural shop order", "woocommerce"), // <== To be renamed at your convenience
        ) + $orderby_options ;
    }
    return $orderby_options ;
}

// Set default orderby to "Date DESC" option for specific product category archive
add_filter( 'woocommerce_default_catalog_orderby', 'default_catalog_orderby_date_desc' );
function default_catalog_orderby_date_desc( $default_orderby ) {
    if ( is_product_category_orderby() )
        $default_orderby = 'date_desc';

    return $default_orderby;
}

// Set default orderby query to "Date DESC" option for specific product category archive
add_action( 'woocommerce_product_query', 'product_query_by_date_desc' );
function product_query_by_date_desc( $q ) {
    if ( ! isset( $_GET['orderby'] ) && is_product_category_orderby() && ! is_admin() ) {
        $q->set( 'orderby', 'date ID' );
        $q->set( 'order', 'DESC' );
    }
}

代码位于活动子主题(或活动主题)的 function.php 文件中。 测试和工作。

在此处输入图片说明

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM