Recent

wzkb_migration_max_sections_per_batch filter

wzkb_migration_max_sections_per_batch

Filters the maximum number of sections processed per migration batch.

Allows customization of migration batch section limit for server performance tuning.

Type: filter
Since: 3.0.0
Source: includes/admin/class-product-migrator.php line 461

Parameters

TypeNameDescription
int$max_sections_per_batchNumber of sections processed per batch. Default 3.

Usage

add_filter( 'wzkb_migration_max_sections_per_batch', function($max_sections_per_batch) {
    // ...
    return $max_sections_per_batch;
} );