WC_Order::get_user_id()publicWC 1.0

Alias for get_customer_id().

Method of the class: WC_Order{}

No Hooks.

Return

Int.

Usage

$WC_Order = new WC_Order();
$WC_Order->get_user_id( $context );
$context(string)
What the value is for. Valid values are view and edit.
Default: 'view'

WC_Order::get_user_id() code WC 8.6.1

public function get_user_id( $context = 'view' ) {
	return $this->get_customer_id( $context );
}