答案 0 :(得分:0)
使用woocommerce_catalog_orderby
过滤器,您可以更改选项顺序。
尝试一下
add_filter( 'woocommerce_catalog_orderby', 'order_by_rating_first');
function order_by_rating_first($orderby) {
if (array_key_exists('rating', $orderby)) {
$rating = $orderby['rating'];
unset($orderby['rating']);
array_unshift($orderby, $rating);
}
return $orderby;
}