jumlah barang dalam cart quantitiy wooCommerce

function count_item_in_cart() {
    $count = 0;
    foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
        $count++;
    }
    return $count;
}
Glamorous Gemsbok