You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
github-actions[bot] edited this page May 18, 2026
·
1 revision
Filters the retention window for local tombstones, in days.
Set to 0 or a negative value to disable automatic purge.
Auto-generated Example
/** * Filters the retention window for local tombstones, in days. * * Set to 0 or a negative value to disable automatic purge. * * @param int $days * @return int The filtered value. */functionmy_activitypub_tombstone_retention_days_callback( int$days ) {
// Your code here.return$days;
}
add_filter( 'activitypub_tombstone_retention_days', 'my_activitypub_tombstone_retention_days_callback' );