-
Notifications
You must be signed in to change notification settings - Fork 80
activitypub_update_remote_actors_number
github-actions[bot] edited this page Aug 18, 2025
·
8 revisions
Filter the number of remote Actors to update.
/**
* Filter the number of remote Actors to update.
*
* @param int $number
* @return int The filtered value.
*/
function my_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' );
-
int
$number
The number of remote Actors to update.
apply_filters( 'activitypub_update_remote_actors_number', $number )
Follow @[email protected] for updates and news.