You are viewing an old revision of this post, from October 18, 2012 @ 05:47:53. See below for differences between this version and the current revision.

Renaming WordPress Custom Post Types and Taxonomies

Taken from this Stack Exchange Thread: http://wordpress.stackexchange.com/questions/1037/renaming-custom-post-types-and-taxonomies SQL query for renaming the posts: [js]UPDATE `wp_posts` SET `post_type` = '<new post type name>' WHERE `post_type` = '<old post type name>';[/js] SQL query for renaming taxonomy: [js]UPDATE  `wp_term_taxonomy` SET  `taxonomy` =  '&lt;new taxonomy name&gt;' WHERE  `taxonomy` = '&lt;old taxonomy name&gt;';[/js] That should take care of all of the database areas. Just remember to match the new names in the code where the post types or taxonomies are registered. As far as I know, this is not handled in any plugins yet.

Revisions

  • October 18, 2012 @ 05:48:30 [Current Revision] by PeterLugg
  • October 18, 2012 @ 05:47:53 by PeterLugg
  • October 18, 2012 @ 05:46:17 by PeterLugg

Revision Differences

There are no differences between the October 18, 2012 @ 05:47:53 revision and the current revision. (Maybe only post meta information was changed.)

Tags: , ,

No comments yet.

Leave a Reply