admin管理员组文章数量:1122832
I have two posts in my wp_posts
table where post_type='attachment'
The picture below shows the records related to those in wp_postmeta
table
I need to change the IDs of those files. What I am doing is:
update wp_posts
set ID = ID + 10000
where ID in (3143,3144);
update wp_postmeta set post_id = post_id + 10000,
meta_id = meta_id + 100000
where post_id in (3143,3144);
When I do that, I am losing the images! I don't see it under "Media" section in wp-admin
. In the webpage, they are not shown either. If I go: /wp-admin/upload.php?item=13143, it also does not come up. Only when I go to the link in the "guid" field of the related record at wp_posts, I see the image.
What am I missing? What am I doing wrong?
Any advice would be appreciated.
I have two posts in my wp_posts
table where post_type='attachment'
The picture below shows the records related to those in wp_postmeta
table
I need to change the IDs of those files. What I am doing is:
update wp_posts
set ID = ID + 10000
where ID in (3143,3144);
update wp_postmeta set post_id = post_id + 10000,
meta_id = meta_id + 100000
where post_id in (3143,3144);
When I do that, I am losing the images! I don't see it under "Media" section in wp-admin
. In the webpage, they are not shown either. If I go: /wp-admin/upload.php?item=13143, it also does not come up. Only when I go to the link in the "guid" field of the related record at wp_posts, I see the image.
What am I missing? What am I doing wrong?
Any advice would be appreciated.
Share Improve this question asked Apr 25, 2019 at 16:49 Eray BalkanliEray Balkanli 1212 bronze badges 01 Answer
Reset to default 0your query looks good and seems workning. I've made a test on my database and the image remained visible in the media library after the ID change. Maybe there was already other posts existing with that IDs
本文标签: pluginsHow to change ID of an attachment in wpposts and its related tables correctly
版权声明:本文标题:plugins - How to change ID of an attachment in wp_posts and its related tables correctly? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736286930a1927773.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论