尝试在页面上的主要内容之前呈现产品价格时出现此错误。
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
加载全局?