Answers for "get product id by slug woocommerce"

PHP
6

woocommerce get product id

global $product;
$product->get_id();
Posted by: Guest on July-03-2020
0

get woocommerce product category link by id

global $post;
$link = '';
$terms = get_the_terms( $post->ID, 'product_cat' );
if(!empty($terms[0])){
    $link = get_term_link( $terms[0]->term_id, 'product_cat' );
}
Posted by: Guest on January-29-2022

Code answers related to "get product id by slug woocommerce"

Browse Popular Code Answers by Language