I\'m trying to display a price of a product in Woocommerce, on a custom page. There is a short code for that, but it gives product price and also adds an \"Add to cart butto
In woocommerce,
Get regular price :
$price = get_post_meta( get_the_ID(), '_regular_price', true); // $price will return regular price
Get sale price:
$sale = get_post_meta( get_the_ID(), '_sale_price', true); // $sale will return sale price