woocommerce_product_import_batch_size
Batch size for the product import process.
Использование
add_filter( 'woocommerce_product_import_batch_size', 'wp_kama_woocommerce_product_import_batch_size_filter' ); /** * Function for `woocommerce_product_import_batch_size` filter-hook. * * @param int $size Batch size. * * @return int */ function wp_kama_woocommerce_product_import_batch_size_filter( $size ){ // filter... return $size; }
- $size(int)
- Batch size.
Список изменений
С версии 3.1.0 | Введена. |
Где вызывается хук
woocommerce_product_import_batch_size
woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php 370
'lines' => apply_filters( 'woocommerce_product_import_batch_size', 30 ),