Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
WooCommerce::load_webhooks()
Load & enqueue active webhooks.
Description Description
Source Source
File: includes/class-woocommerce.php
private function load_webhooks() { if ( ! is_blog_installed() ) { return; } /** * Hook: woocommerce_load_webhooks_limit. * * @since 3.6.0 * @param int $limit Used to limit how many webhooks are loaded. Default: no limit. */ $limit = apply_filters( 'woocommerce_load_webhooks_limit', null ); wc_load_webhooks( 'active', $limit ); }
Changelog Changelog
Version | Description |
---|---|
2.2 | Introduced. |