woocommerce_product_options_advanced action-hookWC 1.0

Usage

add_action( 'woocommerce_product_options_advanced', 'wp_kama_woocommerce_product_options_advanced_action' );

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

	// action...
}

Where the hook is called

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

Where the hook is used in WooCommerce

Usage not found.