Skip to content

activitypub_update_remote_actors_number

github-actions[bot] edited this page Aug 18, 2025 · 8 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.
 */
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' );

Parameters

  • int $number The number of remote Actors to update.

Files

apply_filters( 'activitypub_update_remote_actors_number', $number )

← All Hooks

Users

Developers

Clone this wiki locally