WC_Abstract_Order::get_item_count()publicWC 1.0

Gets the count of order items of a certain type.

Method of the class: WC_Abstract_Order{}

Hooks from the method

Return

Int|String.

Usage

$WC_Abstract_Order = new WC_Abstract_Order();
$WC_Abstract_Order->get_item_count( $item_type );
$item_type(string)
Item type to lookup.
Default: ''

WC_Abstract_Order::get_item_count() code WC 8.7.0

public function get_item_count( $item_type = '' ) {
	$items = $this->get_items( empty( $item_type ) ? 'line_item' : $item_type );
	$count = 0;

	foreach ( $items as $item ) {
		$count += $item->get_quantity();
	}

	return apply_filters( 'woocommerce_get_item_count', $count, $item_type, $this );
}