Customer::get_customer_id()

Summary

No summary available.

Return

(int) The ID of the customer account linked to this user


Source

File: src/BigCommerce/Accounts/Customer.php

	public function get_customer_id() {
		$customer_id = get_user_option( self::CUSTOMER_ID_META, $this->wp_user_id );

		return (int) $customer_id;
	}


User Contributed Notes

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