Hi guys,
I would like to know where in DB are written relations between image and post to which image is attached to? It is a little bit urgent, so any help would be appreciated. :)
Thanks
Ales
Hi guys,
I would like to know where in DB are written relations between image and post to which image is attached to? It is a little bit urgent, so any help would be appreciated. :)
Thanks
Ales
Attachments are stored in wp_posts with a post_type of 'attachment', and a post_parent of the post to which they are attached. There are also records in wp_postmeta for the attachment under the post_id of the wp_posts attachment record.
thanks!
You must log in to post.