Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.9k views
in Technique[技术] by (71.8m points)

Looking for a way to manually increment the WordPress post ID

I recently created a staging site to redesign an eCommerce website. Before pushing staging live, I imported all of the customers and orders into the staging site then went live. The issue that I'm running into is that the client's CRM is using the post ID for order tracking. The redesigned site's post ID for newly created orders is about 5,000 behind where the old site's post ID counter was. This is resulting in duplicate content issues in the client's CRM.

Is there a way to manually increment the post ID counter to a higher value?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

A fellow developer helped me with the following code:

ALTER TABLE wp_posts AUTO_INCREMENT = x

Run this in phpMyAdmin to change the counter number to whatever value you place in x. Just make sure that it's higher than your current highest post number or serious issues can arise.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...