We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Filters the pause between async batches (in seconds).
/** * Filters the pause between async batches (in seconds). * * @param int $async_batch_pause * @param string|false $hook * @return int The filtered value. */ function my_activitypub_scheduler_async_batch_pause_callback( int $async_batch_pause, string|false $hook = null ) { // Your code here. return $async_batch_pause; } add_filter( 'activitypub_scheduler_async_batch_pause', 'my_activitypub_scheduler_async_batch_pause_callback', 10, 2 );
int
$async_batch_pause
string|false|null
$hook
\apply_filters( 'activitypub_scheduler_async_batch_pause', 30, $hook )
← All Hooks