修改WordPress文章ID一般是使用的不多的,但是还是会有人用到,今天就简单介绍一下如何通过**L来修改WordPress文章ID?
进入 mysql 命令或者 phpmyadmin 的 **L,执行如下命令即可:
如将文章ID为3368的文章修改为189
update wp_posts set id = 3368 where id = 189;<br>
update wp_term_relationshi<a href=”https://www.wpzt.net/fw/photo.html” target=”_blank”>ps</a> set object_id = 3368 where object_id = 189;<br>
update wp_postmeta set post_id = 3368 where post_id = 189;<br>
update wp_comments set comment_post_ID = 3368 where comment_post_ID = 189;
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容