-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_auto_tweet_allowed
github-actions[bot] edited this page Jun 19, 2026
·
2 revisions
Return true if auto tweeting of old posts is enabled.
add_filter(
'wpt_auto_tweet_allowed',
function(
bool $return,
int $post_id
) {
// Your code here.
return $return;
},
10,
2
);-
bool$returntrue if enabled. -
int$post_idPost ID.
bool
apply_filters( 'wpt_auto_tweet_allowed', $return, $post_id )