我需要在这个代码中添加一个span
return $button_text . ' - '. strip_tags( $product_price );
当我这样做的时候:
return $button_text . ' - <span class="Price">'. strip_tags( $product_price ) . ' </span>';
编辑1:
完整的代码如下:我需要添加一个类的价格,因为我没有在我的商店显示我的价格。我把它放在一个按钮,但谷歌商家找不到价格,所以我需要把我的价格添加到退货。
add_filter( 'woocommerce_product_add_to_cart_text', 'custom_add_to_cart_price', 20, 2 ); // Shop and other archives pages
add_filter( 'woocommerce_product_single_add_to_cart_text', 'custom_add_to_cart_price', 20, 2 ); // Single product pages
function custom_add_to_cart_price( $button_text, $product ) {
// Variable products
if( $product->is_type('variable') ) {
// shop and archives
if( ! is_product() ){
$product_price = wc_price( wc_get_price_to_display( $product, array( 'price' => $product->get_variation_price() ) ) );
return $button_text . ' - From ' . strip_tags( $product_price );
}
// Single product pages
else {
return $button_text;
}
}
// All other product types
else {
$product_price = wc_price( wc_get_price_to_display( $product ) );
return $button_text . ' - ' . strip_tags( $product_price );
}
}
感谢$button_text ='Submit';
$product_price =10;
return $button_text.'-<span class="Price">'. strip_tags( $product_price ) .'</span>';