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 batch size for processing outbox items.
/** * Filters the batch size for processing outbox items. * * @param int $batch_size * @return int The filtered value. */ function my_activitypub_dispatcher_batch_size_callback( int $batch_size ) { // Your code here. return $batch_size; } add_filter( 'activitypub_dispatcher_batch_size', 'my_activitypub_dispatcher_batch_size_callback' );
int
$batch_size
apply_filters( 'activitypub_dispatcher_batch_size', ACTIVITYPUB_OUTBOX_PROCESSING_BATCH_SIZE )
← All Hooks