wc_get_webhook()
Get webhook.
No Hooks.
Return
WC_Webhook|null
.
Usage
wc_get_webhook( $id );
- $id(int|WC_Webhook) (required)
- Webhook ID or object.
wc_get_webhook() wc get webhook code WC 9.4.2
function wc_get_webhook( $id ) { $webhook = new WC_Webhook( $id ); return 0 !== $webhook->get_id() ? $webhook : null; }