WC_Cart::get_items_needing_shipping()

Get only items that need shipping.


Description Description


Return Return

(array)


Top ↑

Source Source

File: includes/class-wc-cart.php

	protected function get_items_needing_shipping() {
		return array_filter( $this->get_cart(), array( $this, 'filter_items_needing_shipping' ) );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.