woocommerce_product_write_panel_tabs action-hookWC 1.0

Usage

add_action( 'woocommerce_product_write_panel_tabs', 'wp_kama_woocommerce_product_write_panel_tabs_action' );

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

	// action...
}

Where the hook is called

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

Where the hook is used in WooCommerce

Usage not found.