Skip to content

Instantly share code, notes, and snippets.

@enru
Created October 11, 2012 13:15
Show Gist options
  • Select an option

  • Save enru/3872197 to your computer and use it in GitHub Desktop.

Select an option

Save enru/3872197 to your computer and use it in GitHub Desktop.
woocommerce top level product cats
select * from wp_term_taxonomy tt
left join wp_terms t on tt.term_id = t.term_id
where tt.taxonomy = 'product_cat' and tt.parent = 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment