Answers for "get product typw wc php"

PHP
0

wc php get product category in product page

global $post;
$terms = get_the_terms( $post->ID, 'product_cat' );
foreach ($terms as $term) {
    $product_cat_id = $term->term_id;
    break;
}
Posted by: Guest on January-06-2022

Browse Popular Code Answers by Language