wc_get_customer_total_spent()WC 1.0

Get total spent by customer.

Хуков нет.

Возвращает

Строку.

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

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

Код wc_get_customer_total_spent() WC 8.7.0

function wc_get_customer_total_spent( $user_id ) {
	$customer = new WC_Customer( $user_id );
	return $customer->get_total_spent();
}