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
October 18, 2012 @ 05:46:17 | Current Revision | ||
---|---|---|---|
Content | |||
Added: Taken from this Stack Exchange Thread: <a href="http:// wordpress.stackexchange.com/ questions/1037/ renaming-custom- post-types-and-taxonomies" target="_blank" >http://wordpress.stackexchange.com/ questions/1037/ renaming-custom- post-types-and- taxonomies</a> | |||
Added: SQL query for renaming the posts: | |||
Added: [js]UPDATE `wp_posts` SET `post_type` = '<new post type name>' WHERE `post_type` = '<old post type name>';[/js] | |||
Deleted: | Added: SQL query for renaming taxonomy: | ||
Added: [js]UPDATE `wp_term_taxonomy` SET `taxonomy` = '&lt;new taxonomy name&gt;' WHERE `taxonomy` = '&lt;old taxonomy name&gt;';[/js] | |||
Added: 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. |
Note: Spaces may be added to comparison text to allow better line wrapping.
No comments yet.