woocommerce_product_importer_memory_exceeded
Usage
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
- -
Where the hook is called
woocommerce_product_importer_memory_exceeded
woocommerce/includes/import/abstract-wc-product-importer.php 752
return apply_filters( 'woocommerce_product_importer_memory_exceeded', $return );