我需要一个可以通过id显示产品价格的php文件。我已尝试使用此代码在带有此内容的“price.php”文件中执行此操作:
我确信缺少与wp链接的东西,但是什么?
<?php
$price = get_post_meta( '225', '_regular_price', true);
echo $price;
?>
答案 0 :(得分:4)
如果您有产品ID,可以使用它来创建产品对象:
$product = new WC_Product($product_id);
After Creating Object you can run any of WooCommerce's product methods.
$product->get_regular_price();
$product->get_sale_price();
$product->get_price();