Mogelijke standaard sorteringen:

popularity
price
date
rand
relevance
title
menu_order

add_filter('woocommerce_default_catalog_orderby', 'custom_catalog_ordering_args', 10, 1);
    function custom_catalog_ordering_args( $orderby ) {
        $orderby = 'popularity'; 
        return $orderby;
    }

popularity

Geef een reactie 0