Shop

// Add result count and sorting to the Shop page
add_action( ‘woocommerce_before_shop_loop’, ‘custom_shop_result_count’, 25 );

function custom_shop_result_count() {
if ( is_shop() || is_product_category() || is_product_tag() ) {
// Display result count
woocommerce_result_count();

// Display sorting options
woocommerce_catalog_ordering();
}
}

Panier
Retour en haut