woocommerce_after_edit_attribute_fields хук-событиеWC 1.0

Использование

add_action( 'woocommerce_after_edit_attribute_fields', 'wp_kama_woocommerce_after_edit_attribute_fields_action' );

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

	// action...
}

Где вызывается хук

WC_Admin_Attributes::edit_attribute()
woocommerce_after_edit_attribute_fields
woocommerce/includes/admin/class-wc-admin-attributes.php 280
<?php do_action( 'woocommerce_after_edit_attribute_fields' ); ?>

Где используется хук в WooCommerce

Использование не найдено.