woocommerce_process_product_meta_(product_type) action-hookWC 1.0

phpcs:disable WooCommerce.Commenting.CommentHooks.MissingHookComment

Usage

add_action( 'woocommerce_process_product_meta_(product_type)', 'wp_kama_woocommerce_process_product_meta_type_action' );

/**
 * Function for `woocommerce_process_product_meta_(product_type)` action-hook.
 * 
 * @param  $post_id 
 *
 * @return void
 */
function wp_kama_woocommerce_process_product_meta_type_action( $post_id ){

	// action...
}
$post_id
-

Where the hook is called

WC_Meta_Box_Product_Data::save()
woocommerce_process_product_meta_(product_type)
woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-data.php 433
do_action( 'woocommerce_process_product_meta_' . $product_type, $post_id );

Where the hook is used in WooCommerce

Usage not found.