HUSKY - Products Filter Professional for WooCommerce

woof_custom_filter_items_order

Hook woof_custom_filter_items_order filtre öğelerinin sırasını değiştirmeye olanak tanır, filtre anahtarlarının bir dizisini geçirir (Yapı sekmesinde, bir filtrenin ek seçeneklerine tıklayarak filtre bölümü anahtarını 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;
});