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

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

add_action( 'woocommerce_rest_api_uploaded_image_from_url', 'wp_kama_woocommerce_rest_api_uploaded_image_from_url_action', 10, 2 );

/**
 * Function for `woocommerce_rest_api_uploaded_image_from_url` action-hook.
 * 
 * @param  $file      
 * @param  $image_url 
 *
 * @return void
 */
function wp_kama_woocommerce_rest_api_uploaded_image_from_url_action( $file, $image_url ){

	// action...
}
$file
-
$image_url
-

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

wc_rest_upload_image_from_url()
woocommerce_rest_api_uploaded_image_from_url
woocommerce/includes/wc-rest-functions.php 121
do_action( 'woocommerce_rest_api_uploaded_image_from_url', $file, $image_url );

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

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