Get Price HTML Manually

Retrieve price HTML manually.

if ( class_exists('\Wdr\App\Controllers\ManageDiscount')) {
	if (is_a($product, 'WC_Product')) {
		 $manage_discount = new \Wdr\App\Controllers\ManageDiscount();
		 $price_html = "<div class='price'></div>";
		 $product_qty = 1;
		 $price_html = $manage_discount->getPriceHtml($price_html, $product, $product_qty, true);
	}
  }