Answers for "wc php get product category in product page"

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
0

wc php if is product category page

is_product_category()
Posted by: Guest on August-25-2021

Browse Popular Code Answers by Language