woocommerce_api_delete_product_attribute_term хук-событиеWC 1.0

Использование

add_action( 'woocommerce_api_delete_product_attribute_term', 'wp_kama_woocommerce_api_delete_product_attribute_term_action', 10, 2 );

/**
 * Function for `woocommerce_api_delete_product_attribute_term` action-hook.
 * 
 * @param  $id   
 * @param  $that 
 *
 * @return void
 */
function wp_kama_woocommerce_api_delete_product_attribute_term_action( $id, $that ){

	// action...
}
$id
-
$that
-

Где вызывается хук

WC_API_Products::delete_product_attribute_term()
woocommerce_api_delete_product_attribute_term
woocommerce/includes/legacy/api/v3/class-wc-api-products.php 2992
do_action( 'woocommerce_api_delete_product_attribute_term', $id, $this );

Где используется хук в WooCommerce

Использование не найдено.