Skip to content

Instantly share code, notes, and snippets.

@markbain
Created June 6, 2014 05:20
Show Gist options
  • Save markbain/9b1552ee267d33d43568 to your computer and use it in GitHub Desktop.
Save markbain/9b1552ee267d33d43568 to your computer and use it in GitHub Desktop.
Change name of WordPress custom post type in database
UPDATE `wp_posts` SET `post_type` = 'NEW_CPT_NAME' WHERE `post_type` = 'OLD_CPT_NAME';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment