woocommerce_webhook_topic_hooks filter-hookWC 1.0

Usage

add_filter( 'woocommerce_webhook_topic_hooks', 'wp_kama_woocommerce_webhook_topic_hooks_filter', 10, 2 );

/**
 * Function for `woocommerce_webhook_topic_hooks` filter-hook.
 * 
 * @param  $topic_hooks 
 * @param  $that        
 *
 * @return 
 */
function wp_kama_woocommerce_webhook_topic_hooks_filter( $topic_hooks, $that ){

	// filter...
	return $topic_hooks;
}
$topic_hooks
-
$that
-

Where the hook is called

WC_Webhook::get_topic_hooks()
woocommerce_webhook_topic_hooks
woocommerce/includes/class-wc-webhook.php 1024
$topic_hooks = apply_filters( 'woocommerce_webhook_topic_hooks', $topic_hooks, $this );

Where the hook is used in WooCommerce

Usage not found.