wc_get_webhook_statuses()
Get Webhook statuses.
Description Description
Return Return
(array)
Source Source
File: includes/wc-webhook-functions.php
function wc_get_webhook_statuses() {
return apply_filters(
'woocommerce_webhook_statuses',
array(
'active' => __( 'Active', 'woocommerce' ),
'paused' => __( 'Paused', 'woocommerce' ),
'disabled' => __( 'Disabled', 'woocommerce' ),
)
);
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.3.0 | Introduced. |