-
Notifications
You must be signed in to change notification settings - Fork 7
mastodon_api_account_visibility
Alex Kirk edited this page Feb 8, 2025
·
13 revisions
add_filter(
'mastodon_api_account_visibility',
function (
string $public,
$wp_get_current_user
) {
// Your code here
return $public;
},
10,
2
);
-
string
$public
$wp_get_current_user
apply_filters( 'mastodon_api_account_visibility', 'public', wp_get_current_user() )