-
Notifications
You must be signed in to change notification settings - Fork 10
mastodon_api_account_follow
github-actions[bot] edited this page Jul 24, 2026
·
31 revisions
Follow the given account.
Can also be used to update whether to show reblogs or enable notifications.
add_filter(
'mastodon_api_account_follow',
function (
string $user_id,
WP_REST_Request $request
) {
// Your code here
return $user_id;
},
10,
2
);-
string$user_idThe user ID. -
WP_REST_Request$requestThe request object.
string The user ID.
apply_filters( 'mastodon_api_account_follow', $user_id, $request )