How to set an attachments parent post id in code?
In WordPress – Attachments are their own post-type which means you just need to update the post using wp_update_post(): $media_post = wp_update_post( array( ‘ID’ => $attachment_id, ‘post_parent’ => $post_parent_id, ), true ); if( is_wp_error( $media_post ) ) { error_log( print_r( $media_post, 1 ) ); } In the above you would pass both the Attachment ID … Read more