Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

woocommerce get product categories

$terms = get_the_terms( $product_id, 'product_cat' );
foreach ($terms as $term) {
    $product_cat_id[] = $term->term_id;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #woocommerce #product #categories
ADD COMMENT
Topic
Name
1+8 =