woocommerce_after_add_attribute_fields action-hookWC 1.0

Usage

add_action( 'woocommerce_after_add_attribute_fields', 'wp_kama_woocommerce_after_add_attribute_fields_action' );

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

	// action...
}

Where the hook is called

WC_Admin_Attributes::add_attribute()
woocommerce_after_add_attribute_fields
woocommerce/includes/admin/class-wc-admin-attributes.php 486
<?php do_action( 'woocommerce_after_add_attribute_fields' ); ?>

Where the hook is used in WooCommerce

Usage not found.