在标题中使用Woocommerce get_price()

时间:2016-09-22 14:13:13

标签: woocommerce wordpress-theming

如何在循环外使用WC_Product方法。

我需要在我的主题标题中输出我的产品和SKU的价格。

非常感谢提前

1 个答案:

答案 0 :(得分:0)

您必须使用产品ID为特定产品创建$product对象。

$product_id = 99;
$product = wc_get_product( $product_id );
echo $product->get_price_html();