第一次在這里發(fā)帖,請多多包涵。我正在使用以下代碼:function display_price_in_variation_option_name( $term ) { global $wpdb, $product; $result = $wpdb->get_col( "SELECT slug FROM {$wpdb->prefix}terms WHERE name = '$term'" ); $term_slug = ( !empty( $result ) ) ? $result[0] : $term; $query = "SELECT postmeta.post_id AS product_id FROM {$wpdb->prefix}postmeta AS postmeta LEFT JOIN {$wpdb->prefix}posts AS products ON ( products.ID = postmeta.post_id ) WHERE postmeta.meta_key LIKE 'attribute_%' AND postmeta.meta_value = '$term_slug' AND products.post_parent = $product->id"; $variation_id = $wpdb->get_col( $query ); $parent = wp_get_post_parent_id( $variation_id[0] ); if ( $parent > 0 ) { $_product = new WC_Product_Variation( $variation_id[0] ); return $term . woocommerce_price( $_product->get_price() ); } return $term;}add_filter( 'woocommerce_variation_option_name', 'display_price_in_variation_option_name' );此代碼在變體菜單中的每個項目旁邊放置一個價格。我想做的是讓它也發(fā)布一個銷售價格并通過正常價格(如,這里是正常價格和銷售價格)。我嘗試了以下方法: $regular_price = woocommerce_price( $_product->get_regular_price() ); $sale_price = woocommerce_price( $_product->get_price() ); return $term . $regular_price . $sale_price;雖然這確實增加了銷售價格,但它也有銷售價格和正常價格重疊。我想我正在尋找的是一種格式化價格的方法。任何幫助表示贊賞。
1 回答

紫衣仙女
TA貢獻(xiàn)1839條經(jīng)驗 獲得超15個贊
您可以在過濾器中添加一些 HTML 以添加空格并刪除原始價格。您可以使用以下代碼
$regular_price = woocommerce_price( $_product->get_regular_price() );
$sale_price = woocommerce_price( $_product->get_price() );
return $term . ' ' . '<strike>' . $regular_price . '</strike>' . ' '. $sale_price;
- 1 回答
- 0 關(guān)注
- 134 瀏覽
添加回答
舉報
0/150
提交
取消