-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_tweet_this_edit
github-actions[bot] edited this page Jun 19, 2026
·
2 revisions
Filter whether a post defaults to send updates on edit.
add_filter(
'wpt_tweet_this_edit',
function(
string,
array $_POST,
int $post_ID
) {
// Your code here.
return string;
},
10,
3
);-
string$post_this 'yes' or 'no'. Other variable names:$post_this -
array$_POSTPOST global. -
int$post_IDPost ID.
string 'yes' to continue with posting.
apply_filters( 'wpt_tweet_this_edit', $post_this, $_POST, $post_ID )