-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_filter_mastodon_status
github-actions[bot] edited this page Jun 20, 2026
·
2 revisions
Filter status array for Mastodon.
add_filter(
'wpt_filter_mastodon_status',
function(
array $status,
int $post_ID,
int|bool $auth
) {
// Your code here.
return $status;
},
10,
3
);-
array$statusArray of parameters sent to Mastodon. -
int$post_IDPost ID being tweeted. -
int|bool$authAuthoring context.
array
apply_filters( 'wpt_filter_mastodon_status', $status, $post_ID, $auth )