前几天写文章,ID直接从146跳到148,Wordpress里处理过的ID会自动连续。下面跟大家分享一下把文章ID从148改成147的SQL。有类似问题的朋友可以参考一下。
4月更新过文章,文章ID停留在146,5月忙于考试,文章一篇都没写,结果6月前几天写文章的时候,ID从146直接跳到148,也不知道什么原因,我的Wordpress是做过处理的ID是会自动连续的。打开数据库,把文章ID为148的改成147,完整的SQL语句如下:复制代码代码如下:
updatewp_postssetid=147whereid=148;
updatewp_term_relationshipssetobject_id=147whereobject_id=148;
updatewp_postmetasetpost_id=147wherepost_id=148;
updatewp_commentssetcomment_post_ID=147wherecomment_post_ID=148;
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)