Answers for "how to get product id and show details in another page 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

Code answers related to "how to get product id and show details in another page php"

Browse Popular Code Answers by Language