-
Notifications
You must be signed in to change notification settings - Fork 86
activitypub_dispatcher_retry_max_attempts
github-actions[bot] edited this page Mar 12, 2026
·
3 revisions
Filters the maximum number of retry attempts.
/**
* Filters the maximum number of retry attempts.
*
* @param int $retry_max_attempts
* @return int The filtered value.
*/
function my_activitypub_dispatcher_retry_max_attempts_callback( int $retry_max_attempts ) {
// Your code here.
return $retry_max_attempts;
}
add_filter( 'activitypub_dispatcher_retry_max_attempts', 'my_activitypub_dispatcher_retry_max_attempts_callback' );-
int$retry_max_attemptsThe maximum number of retry attempts. Default ACTIVITYPUB_OUTBOX_RETRY_MAX_ATTEMPTS.
apply_filters( 'activitypub_dispatcher_retry_max_attempts', 3 )Follow @activitypub.blog@activitypub.blog for updates and news.