-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_post_attachment
github-actions[bot] edited this page Jun 20, 2026
·
5 revisions
Filter the attachment ID to post with a status update.
add_filter(
'wpt_post_attachment',
function(
int $attachment_id,
int $post_ID
) {
// Your code here.
return $attachment_id;
},
10,
2
);-
int$attachment_idAttachment ID. -
int$post_IDPost ID.
int|bool
apply_filters( 'wpt_post_attachment', $attachment_id, $post_ID )