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

时间:2019-03-05 21:06:04

标签: php wordpress sorting date woocommerce

在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;
}

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

请尝试以下仅适用于特定定义的产品类别归档页面的“ 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文件中。经过测试和工作。

enter image description here