mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
9 lines
261 B
Text
9 lines
261 B
Text
function rucss_batch_size( $rucss_batch_size ) {
|
|
|
|
// change this value, default is 100 urls:
|
|
$rucss_batch_size = 50;
|
|
|
|
return $rucss_batch_size;
|
|
}
|
|
|
|
add_filter( 'rocket_rucss_pending_jobs_cron_rows_count', 'rucss_batch_size' );
|