woocommerce_product_options_related action-hookWC 1.0

Usage

add_action( 'woocommerce_product_options_related', 'wp_kama_woocommerce_product_options_related_action' );

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

	// action...
}

Where the hook is called

In file: /includes/admin/meta-boxes/views/html-product-data-linked-products.php
woocommerce_product_options_related
woocommerce/includes/admin/meta-boxes/views/html-product-data-linked-products.php 64
<?php do_action( 'woocommerce_product_options_related' ); ?>

Where the hook is used in WooCommerce

Usage not found.