WC_Webhook::get_user_id()
Get the user ID for this webhook.
Method of the class: WC_Webhook{}
No Hooks.
Return
Int
.
Usage
$WC_Webhook = new WC_Webhook(); $WC_Webhook->get_user_id( $context );
- $context(string)
- What the value is for. Valid values are 'view' and 'edit'.
Default: 'view'
Changelog
Since 2.2.0 | Introduced. |
WC_Webhook::get_user_id() WC Webhook::get user id code WC 9.5.1
public function get_user_id( $context = 'view' ) { return $this->get_prop( 'user_id', $context ); }