usces_filter_internal_tax_total / フィルターフック

内税額を算出する対象金額を変更する

説明

内税額を算出する対象金額を変更します。

使い方

add_filter( 'usces_filter_internal_tax_total',  'my_filter_internal_tax_total', 10, 2 );
function my_filter_internal_tax_total( $total, $materials ) {
    //処理
    return $total;
}

パラメータ

$total
(文字列)デフォルトの対象金額
$materials
(配列)税額計算に必要な情報

  • total_items_price:(数値)商品合計金額
  • discount:(数値)値引き額
  • shipping_charge:(数値)送料
  • cod_fee:(数値)代引き手数料
  • use_point:(数値)使用ポイント
  • order_id:(数値)(オプション)受注番号

用例

ソースファイル

usc-e-shop/functions/template_func.php

関連資料