如何通过SQL来修改WordPress文章ID?
修改WordPress文章ID一般是使用的不多的,但是还是会有人用到,今天就简单介绍一下如何通过SQL来修改W…
修改WordPress文章ID一般是使用的不多的,但是还是会有人用到,今天就简单介绍一下如何通过SQL来修改WordPress文章ID?
进入 mysql 命令或者 phpmyadmin 的 SQL,执行如下命令即可:
如将文章ID为3368的文章修改为189
update wp_posts set id = 3368 where id = 189;<br>
update wp_term_relationshi<a href=”/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;
类别:WordPress技巧、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!