【发布时间】:2016-06-03 09:41:20
【问题描述】:
尝试在页面上的主要内容之前呈现产品价格时出现此错误。
Fatal error: Uncaught Error: Call to a member function get_price_html() on string in /wp-content/plugins/woocommerce/templates/single-product/price.php:27
这是我的代码:
//the remove action works fine
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_price', 10);
//this breaks it
add_action('woocommerce_before_main_content', 'woocommerce_template_single_price', 40);
我假设因为我试图在主要内容之前获取价格,所以我需要确保全局 $product 已加载。
如何确保加载全局 $product?
【问题讨论】:
标签: php wordpress woocommerce product price