Answers for "wc_get_product get product title"

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

Code answers related to "wc_get_product get product title"

Browse Popular Code Answers by Language