WC_Payment_Token::get_user_id( string $context = 'view' )

Returns the user ID associated with the token or false if this token is not associated.


Description Description


Parameters Parameters

$context

(Optional) In what context to execute this.

Default value: 'view'


Top ↑

Return Return

(int) User ID if this token is associated with a user or 0 if no user is associated


Top ↑

Source Source

File: includes/abstracts/abstract-wc-payment-token.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
2.6.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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