-
Notifications
You must be signed in to change notification settings - Fork 9
mastodon_api_account_followers
github-actions[bot] edited this page Jul 24, 2026
·
33 revisions
Modify the account followers.
add_filter( 'mastodon_api_account_followers', function ( $followers, $user_id, $request ) {
$account = new Entity\Account();
$account->id = $user_id;
$followers[] = $account;
return $followers;
}, 10, 3 );-
Enable_Mastodon_Apps\Entity\Account[]$followersThe account followers. -
string$user_idThe user ID. -
WP_REST_Request$requestThe request object.
Enable_Mastodon_Apps\Entity\Account[] The modified account followers.
\apply_filters( 'mastodon_api_account_followers', array(), $user_id, $request )