wc_get_webhook()WC 1.0

Get webhook.

Хуков нет.

Возвращает

WC_Webhook|null.

Использование

wc_get_webhook( $id );
$id(int|WC_Webhook) (обязательный)
Webhook ID or object.

Код wc_get_webhook() WC 8.7.0

function wc_get_webhook( $id ) {
	$webhook = new WC_Webhook( $id );

	return 0 !== $webhook->get_id() ? $webhook : null;
}