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 Jul 7, 2026
·
20 revisions
Filter the number of remote Actors to update.
Auto-generated Example
/** * Filter the number of remote Actors to update. * * @param int $number * @return int The filtered value. */functionmy_activitypub_update_remote_actors_number_callback( int$number ) {
// Your code here.return$number;
}
add_filter( 'activitypub_update_remote_actors_number', 'my_activitypub_update_remote_actors_number_callback' );