woocommerce_register_taxonomy action-hookWC 1.0

Usage

add_action( 'woocommerce_register_taxonomy', 'wp_kama_woocommerce_register_taxonomy_action' );

/**
 * Function for `woocommerce_register_taxonomy` action-hook.
 * 
 * @return void
 */
function wp_kama_woocommerce_register_taxonomy_action(){

	// action...
}

Where the hook is called

WC_Post_Types::register_taxonomies()
woocommerce_register_taxonomy
woocommerce/includes/class-wc-post-types.php 49
do_action( 'woocommerce_register_taxonomy' );

Where the hook is used in WooCommerce

Usage not found.