Skip to content

Instantly share code, notes, and snippets.

@jartes
Created October 2, 2012 10:16
Show Gist options
  • Save jartes/3818017 to your computer and use it in GitHub Desktop.
Save jartes/3818017 to your computer and use it in GitHub Desktop.
Change category to a tag in WordPress
update wp_term_taxonomy set taxonomy = 'category'
where term_id in (
select a.term_id
from wp_terms a
where a.name in (
'cat_name'
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment