Recent

wzkb_migration_max_articles_per_batchfilter

wzkb_migration_max_articles_per_batch

Filters the maximum number of articles processed per migration batch.

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

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

Parameters

Type Name Description
int $max_articles_per_batch Number of articles processed per batch. Default 50.

Usage

add_filter( 'wzkb_migration_max_articles_per_batch', function($max_articles_per_batch) {
    // ...
    return $max_articles_per_batch;
} );