woocommerce_product_options_attributes
Usage
add_action( 'woocommerce_product_options_attributes', 'wp_kama_woocommerce_product_options_attributes_action' );
/**
* Function for `woocommerce_product_options_attributes` action-hook.
*
* @return void
*/
function wp_kama_woocommerce_product_options_attributes_action(){
// action...
}Where the hook is called
woocommerce_product_options_attributes
woocommerce/includes/admin/meta-boxes/views/html-product-data-attributes.php 63
<?php do_action( 'woocommerce_product_options_attributes' ); ?>