在Woocommerce中,我使用了以下代码,该代码按修改的日期向商店目录添加了自定义排序选项。
HTTP 200
从此答案开始:Add sorting by modified date in Woocommerce products sort by
我想将该自定义排序选项作为默认排序选项,同时将默认woocommerce选项(按菜单顺序)作为次要选项。
如何将这种排序设置为woocommerce默认设置?
答案 0 :(得分:1)
您将使用以下与版本稍有不同的版本代码,以及一些附加的挂钩函数:
add_filter( 'woocommerce_get_catalog_ordering_args', 'enable_catalog_ordering_by_modified_date' );
function enable_catalog_ordering_by_modified_date( $args ) {
if ( isset( $_GET['orderby'] ) ) {
if ( 'modified_date' == $_GET['orderby'] ) {
return array(
'orderby' => 'modified',
'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_filter( 'woocommerce_catalog_orderby', 'add_catalog_orderby_modified_date' );
function add_catalog_orderby_modified_date( $orderby_options ) {
// Insert "Sort by modified date" and the clone of "menu_order" adding after others sorting options
return array(
'modified_date' => __("Sort by modified date", "woocommerce"),
'natural_order' => __("Sort by natural shop order", "woocommerce"), // <== To be renamed at your convenience
) + $orderby_options ;
return $orderby_options ;
}
add_filter( 'woocommerce_default_catalog_orderby', 'default_catalog_orderby_modified_date' );
function default_catalog_orderby_modified_date( $default_orderby ) {
return 'modified';
}
add_action( 'woocommerce_product_query', 'product_query_by_modified_date' );
function product_query_by_modified_date( $q ) {
if ( ! isset( $_GET['orderby'] ) && ! is_admin() ) {
$q->set( 'orderby', 'modified' );
$q->set( 'order', 'DESC' );
}
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试和工作。