HUSKY - Product Filter for WooCommerce

woof_custom_filter_items_order

Hook woof_custom_filter_items_order, filtre öğelerinin sırasını değiştirme yeteneği sağlar, bir filtre anahtarları dizisi iletir (bir filtre bölüm anahtarını, ek seçeneklerine tıklayarak tab Structure içinde bulabilirsiniz)

Örnek:

add_filter('woof_custom_filter_items_order', function($order){    
    //your code here
    $order=['by_price','pa_color', 'by_text', 'product_cat', 'pa_size'];    
    return $order;
});