Answers for "woocommerce get product details by id through api"

6

get product price woocommerce of specific id

$product = wc_get_product( $post_id );

$product->get_regular_price();
$product->get_sale_price();
$product->get_price();
Posted by: Guest on February-11-2021
0

how to get product by category in woocommerce using rest api

/wp-json/wc/v3/products?category=ID
Posted by: Guest on February-28-2022

Code answers related to "woocommerce get product details by id through api"

Browse Popular Code Answers by Language