woocommerce_product_importer_time_exceeded
Использование
add_filter( 'woocommerce_product_importer_time_exceeded', 'wp_kama_woocommerce_product_importer_time_exceeded_filter' );
/**
* Function for `woocommerce_product_importer_time_exceeded` filter-hook.
*
* @param $return
*
* @return
*/
function wp_kama_woocommerce_product_importer_time_exceeded_filter( $return ){
// filter...
return $return;
}
- $return
- -
Где вызывается хук
woocommerce_product_importer_time_exceeded
woocommerce/includes/import/abstract-wc-product-importer.php 776
return apply_filters( 'woocommerce_product_importer_time_exceeded', $return );