Skip to content

boolean_smtp_migration_max_log_rows

Filters the maximum number of email-log rows an import reads from another plugin.

filter Tier B Since 1.0.0

Signature

add_filter( 'boolean_smtp_migration_max_log_rows', $callback, 10, 1 );

Parameters

ParameterTypeDescription
$maxintRows, newest first; 0 for no cap. Default 5000.

Returns int —

Fires in

Example

boolean_smtp_migration_max_log_rows.php
add_filter( 'boolean_smtp_migration_max_log_rows', function ( int $max ) {
return $max;
}, 10, 1 );

Next steps