wc_get_customer_order_count()WC 1.0

Get total orders by customer.

Хуков нет.

Возвращает

int.

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

wc_get_customer_order_count( $user_id );
$user_id(int) (обязательный)
User ID.

Код wc_get_customer_order_count() WC 8.7.0

function wc_get_customer_order_count( $user_id ) {
	$customer = new WC_Customer( $user_id );
	return $customer->get_order_count();
}