-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_upload_media
github-actions[bot] edited this page Jun 14, 2026
·
1 revision
Filter whether this post should upload media.
add_filter(
'wpt_upload_media',
function(
bool $upload,
int $post_ID
) {
// Your code here.
return $upload;
},
10,
2
);-
bool$uploadTrue to allow this post to upload media. -
int$post_IDPost ID.
bool
apply_filters( 'wpt_upload_media', $return, $post_ID )