wc_get_webhook()
Get webhook.
Хуков нет.
Возвращает
WC_Webhook|null.
Использование
wc_get_webhook( $id );
- $id(int|WC_Webhook) (обязательный)
- Webhook ID or object.
Код wc_get_webhook() wc get webhook WC 10.5.2
function wc_get_webhook( $id ) {
$webhook = new WC_Webhook( $id );
return 0 !== $webhook->get_id() ? $webhook : null;
}