woocommerce_product_options_attributes action-hookWC 1.0

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

In file: /includes/admin/meta-boxes/views/html-product-data-attributes.php
woocommerce_product_options_attributes
woocommerce/includes/admin/meta-boxes/views/html-product-data-attributes.php 63
<?php do_action( 'woocommerce_product_options_attributes' ); ?>

Where the hook is used in WooCommerce

Usage not found.