-
-
Save Jany-M/ffaa9c8110a1b1e7388f778954da241f to your computer and use it in GitHub Desktop.
Reset Auto_Increment in WordPress Posts table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*DELETE FROM wp_posts; | |
DELETE FROM wp_postmeta;*/ | |
TRUNCATE TABLE wp_posts; | |
TRUNCATE TABLE wp_postmeta; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment