-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_do_toot
github-actions[bot] edited this page Jun 20, 2026
·
2 revisions
Filter the approval to send a Mastodon Toot.
add_filter(
'wpt_do_toot',
function(
bool $do_toot,
int|bool $auth,
int $post_ID,
string $text
) {
// Your code here.
return $do_toot;
},
10,
4
);-
bool$do_tootReturn false to cancel this Toot. -
int|bool$authAuthor. -
int$post_IDPost ID. -
string$textStatus update text.
bool
apply_filters( 'wpt_do_toot', true, $auth, $post_ID, $status_text )