woocommerce_product_options_external action-hookWC 1.0

Usage

add_action( 'woocommerce_product_options_external', 'wp_kama_woocommerce_product_options_external_action' );

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

	// action...
}

Where the hook is called

In file: /includes/admin/meta-boxes/views/html-product-data-general.php
woocommerce_product_options_external
woocommerce/includes/admin/meta-boxes/views/html-product-data-general.php 35
do_action( 'woocommerce_product_options_external' );

Where the hook is used in WooCommerce

Usage not found.