woocommerce_api_process_product_meta_<get_type>
The WooCommerce woocommerce api process product meta get type hook.
Description
do_action( 'woocommerce_api_process_product_meta_<get_type>', (unknown) $product_get_id, (unknown) $data );
Parameters (2)
- 0. $product_get_id (unknown)
- The product get id.
- 1. $data (unknown)
- The data.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'woocommerce_api_process_product_meta_{$get_type}', $product_get_id, $data );
- The following example is for adding a hook callback.
- // define the woocommerce_api_process_product_meta_<get_type> callback
- function action_woocommerce_api_process_product_meta_get_type( $product_get_id, $data ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "woocommerce_api_process_product_meta_{$get_type}", 'action_woocommerce_api_process_product_meta_get_type', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "woocommerce_api_process_product_meta_{$get_type}", 'action_woocommerce_api_process_product_meta_get_type', 10, 2 );
Defined (2)
The action is defined in the following location(s).
- /includes/api/legacy/v3/class-wc-api-products.php
- do_action( 'woocommerce_api_process_product_meta_' . $product->get_type(), $product->get_id(), $data );
- /includes/api/legacy/v2/class-wc-api-products.php
- do_action( 'woocommerce_api_process_product_meta_' . $product->get_type(), $product->get_id(), $data );