WC_Abstract_Order::get_item_count()publicWC 1.0

Gets the count of order items of a certain type.

Метод класса: WC_Abstract_Order{}

Хуки из метода

Возвращает

int|Строку.

Использование

$WC_Abstract_Order = new WC_Abstract_Order();
$WC_Abstract_Order->get_item_count( $item_type );
$item_type(строка)
Item type to lookup.
По умолчанию: ''

Код WC_Abstract_Order::get_item_count() 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 );
}