Answers for "get_categories woocommerce"

0

woocommerce get product categories

$terms = get_the_terms( $product_id, 'product_cat' );
foreach ($terms as $term) {
    $product_cat_id[] = $term->term_id;
}
Posted by: Guest on July-23-2021
0

get_categories not__in

$categories = get_categories(array(
  'exclude' => $post_id,
));
Posted by: Guest on October-21-2020

Browse Popular Code Answers by Language