WC_Cart::get_cart_contents_weight PHP Method

get_cart_contents_weight() public method

Get weight of items in the cart.
Since: 2.5.0
    public function get_cart_contents_weight()
    {
        $weight = 0;
        foreach ($this->get_cart() as $cart_item_key => $values) {
            $weight += $values['data']->get_weight() * $values['quantity'];
        }
        return apply_filters('woocommerce_cart_contents_weight', $weight);
    }
WC_Cart