woocommerce_product_importer_memory_exceeded хук-фильтрWC 1.0

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

add_filter( 'woocommerce_product_importer_memory_exceeded', 'wp_kama_woocommerce_product_importer_memory_exceeded_filter' );

/**
 * Function for `woocommerce_product_importer_memory_exceeded` filter-hook.
 * 
 * @param  $return 
 *
 * @return 
 */
function wp_kama_woocommerce_product_importer_memory_exceeded_filter( $return ){

	// filter...
	return $return;
}
$return
-

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

WC_Product_Importer::memory_exceeded()
woocommerce_product_importer_memory_exceeded
woocommerce/includes/import/abstract-wc-product-importer.php 730
return apply_filters( 'woocommerce_product_importer_memory_exceeded', $return );

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

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