1
Let’s say a site using Wordpress has half the posts of the default type, and the other half using a Custom Post Type "review" http://codex.wordpress.org/pt-br:Tipos_de_Posts_Personalizados.
But this type of post had no registered tags, so it shared those of the standard posts (post_tag).
Then the custom tag is assigned to custom posts, so it uses "review-tag". How can I via SQL convert the default tags only within these custom posts to the new type?
This command, for example, converts ALL tags:
UPDATE wp_term_taxonomy SET taxonomy='review-tag', parent=0 WHERE taxonomy='tag';
But I need to do this only with posts like review.