我正在使用此功能显示产品价格,并获得此输出:
add_filter( 'woocommerce_get_price_html', 'add_design_price_html', 100, 2 );
function add_design_price_html( $price, $product ){
if(is_single() && $price != "")
$actual_price = apply_filters( 'woocommerce_get_price', $price );
return $actual_price;
}
此函数在html中呈现此输出:
<p class="price"><del><span class="amount">$99.00</span></del> <ins><span class="amount">$78.00</span></ins></p>
那么我怎样才能在php变量中单独获得这些价格值。
谢谢你的时间..